grafana/public/app/features/explore/Explore.tsx

426 lines
13 KiB
TypeScript
Raw Normal View History

2019-01-17 10:59:47 -06:00
// Libraries
2019-02-04 04:25:07 -06:00
import React, { ComponentClass } from 'react';
2018-04-26 04:58:42 -05:00
import { hot } from 'react-hot-loader';
// @ts-ignore
2019-01-10 07:24:31 -06:00
import { connect } from 'react-redux';
import _ from 'lodash';
2019-01-11 11:26:56 -06:00
import { AutoSizer } from 'react-virtualized';
2019-01-17 10:59:47 -06:00
// Services & Utils
import store from 'app/core/store';
2019-01-17 10:59:47 -06:00
// Components
import { Alert } from '@grafana/ui';
2019-01-17 10:59:47 -06:00
import ErrorBoundary from './ErrorBoundary';
import LogsContainer from './LogsContainer';
import QueryRows from './QueryRows';
import TableContainer from './TableContainer';
2019-01-10 07:24:31 -06:00
2019-01-17 10:59:47 -06:00
// Actions
import {
changeSize,
initializeExplore,
modifyQueries,
scanStart,
setQueries,
refreshExplore,
reconnectDatasource,
updateTimeRange,
toggleGraph,
} from './state/actions';
2018-04-26 04:58:42 -05:00
2019-01-17 10:59:47 -06:00
// Types
import { RawTimeRange, GraphSeriesXY, LoadingState, TimeZone, AbsoluteTimeRange } from '@grafana/data';
import { DataQuery, ExploreStartPageProps, DataSourceApi, DataQueryError } from '@grafana/ui';
import {
ExploreItemState,
ExploreUrlState,
ExploreId,
ExploreUpdateState,
ExploreUIState,
ExploreMode,
} from 'app/types/explore';
2019-01-17 10:59:47 -06:00
import { StoreState } from 'app/types';
import {
ensureQueries,
DEFAULT_RANGE,
DEFAULT_UI_STATE,
getTimeRangeFromUrl,
lastUsedDatasourceKeyForOrgId,
} from 'app/core/utils/explore';
2019-01-17 10:59:47 -06:00
import { Emitter } from 'app/core/utils/emitter';
import { ExploreToolbar } from './ExploreToolbar';
import { NoDataSourceCallToAction } from './NoDataSourceCallToAction';
import { FadeIn } from 'app/core/components/Animations/FadeIn';
import { getTimeZone } from '../profile/state/selectors';
import { ErrorContainer } from './ErrorContainer';
import { scanStopAction } from './state/actionTypes';
import { ExploreGraphPanel } from './ExploreGraphPanel';
interface ExploreProps {
2019-02-04 04:25:07 -06:00
StartPage?: ComponentClass<ExploreStartPageProps>;
2019-01-11 11:26:56 -06:00
changeSize: typeof changeSize;
2019-01-10 07:24:31 -06:00
datasourceError: string;
datasourceInstance: DataSourceApi;
2019-01-10 07:24:31 -06:00
datasourceLoading: boolean | null;
datasourceMissing: boolean;
2019-01-11 11:26:56 -06:00
exploreId: ExploreId;
2019-01-10 07:24:31 -06:00
initializeExplore: typeof initializeExplore;
2019-01-12 16:22:28 -06:00
initialized: boolean;
2019-01-10 07:24:31 -06:00
modifyQueries: typeof modifyQueries;
update: ExploreUpdateState;
reconnectDatasource: typeof reconnectDatasource;
refreshExplore: typeof refreshExplore;
2019-01-10 07:24:31 -06:00
scanning?: boolean;
scanRange?: RawTimeRange;
scanStart: typeof scanStart;
scanStopAction: typeof scanStopAction;
setQueries: typeof setQueries;
split: boolean;
2019-01-10 07:24:31 -06:00
showingStartPage?: boolean;
2019-02-04 06:41:29 -06:00
queryKeys: string[];
initialDatasource: string;
initialQueries: DataQuery[];
initialRange: RawTimeRange;
mode: ExploreMode;
initialUI: ExploreUIState;
queryErrors: DataQueryError[];
isLive: boolean;
updateTimeRange: typeof updateTimeRange;
graphResult?: GraphSeriesXY[];
loading?: boolean;
absoluteRange: AbsoluteTimeRange;
showingGraph?: boolean;
showingTable?: boolean;
timeZone?: TimeZone;
onHiddenSeriesChanged?: (hiddenSeries: string[]) => void;
toggleGraph: typeof toggleGraph;
}
/**
* Explore provides an area for quick query iteration for a given datasource.
* Once a datasource is selected it populates the query section at the top.
* When queries are run, their results are being displayed in the main section.
* The datasource determines what kind of query editor it brings, and what kind
2019-01-12 16:44:24 -06:00
* of results viewers it supports. The state is managed entirely in Redux.
2018-11-22 05:00:41 -06:00
*
2019-01-12 16:44:24 -06:00
* SPLIT VIEW
2018-11-22 05:00:41 -06:00
*
2019-01-12 16:44:24 -06:00
* Explore can have two Explore areas side-by-side. This is handled in `Wrapper.tsx`.
* Since there can be multiple Explores (e.g., left and right) each action needs
* the `exploreId` as first parameter so that the reducer knows which Explore state
* is affected.
2018-11-22 05:00:41 -06:00
*
* DATASOURCE REQUESTS
*
* A click on Run Query creates transactions for all DataQueries for all expanded
* result viewers. New runs are discarding previous runs. Upon completion a transaction
* saves the result. The result viewers construct their data from the currently existing
* transactions.
*
* The result viewers determine some of the query options sent to the datasource, e.g.,
* `format`, to indicate eventual transformations by the datasources' result transformers.
*/
2019-01-11 11:26:56 -06:00
export class Explore extends React.PureComponent<ExploreProps> {
el: any;
2018-11-23 08:12:20 -06:00
exploreEvents: Emitter;
constructor(props: ExploreProps) {
2018-04-26 04:58:42 -05:00
super(props);
2018-11-23 08:12:20 -06:00
this.exploreEvents = new Emitter();
2018-04-26 04:58:42 -05:00
}
componentDidMount() {
const { initialized, exploreId, initialDatasource, initialQueries, initialRange, mode, initialUI } = this.props;
const width = this.el ? this.el.offsetWidth : 0;
// initialize the whole explore first time we mount and if browser history contains a change in datasource
if (!initialized) {
2019-01-11 11:26:56 -06:00
this.props.initializeExplore(
exploreId,
initialDatasource,
initialQueries,
initialRange,
mode,
2019-01-11 11:26:56 -06:00
width,
this.exploreEvents,
initialUI
2019-01-11 11:26:56 -06:00
);
}
2018-04-26 04:58:42 -05:00
}
componentWillUnmount() {
this.exploreEvents.removeAllListeners();
}
componentDidUpdate(prevProps: ExploreProps) {
this.refreshExplore();
}
getRef = (el: any) => {
this.el = el;
};
onChangeTime = (rawRange: RawTimeRange) => {
const { updateTimeRange, exploreId } = this.props;
updateTimeRange({ exploreId, rawRange });
};
// Use this in help pages to set page to a single query
2018-11-21 09:28:30 -06:00
onClickExample = (query: DataQuery) => {
this.props.setQueries(this.props.exploreId, [query]);
};
onClickLabel = (key: string, value: string) => {
this.onModifyQueries({ type: 'ADD_FILTER', key, value });
};
onModifyQueries = (action: any, index?: number) => {
2019-01-10 07:24:31 -06:00
const { datasourceInstance } = this.props;
if (datasourceInstance && datasourceInstance.modifyQuery) {
const modifier = (queries: DataQuery, modification: any) => datasourceInstance.modifyQuery(queries, modification);
2019-01-11 11:26:56 -06:00
this.props.modifyQueries(this.props.exploreId, action, index, modifier);
}
};
2019-01-11 11:26:56 -06:00
onResize = (size: { height: number; width: number }) => {
this.props.changeSize(this.props.exploreId, size);
2018-04-26 04:58:42 -05:00
};
2018-11-27 09:35:37 -06:00
onStartScanning = () => {
2019-01-10 07:24:31 -06:00
// Scanner will trigger a query
this.props.scanStart(this.props.exploreId);
};
2018-11-27 09:35:37 -06:00
onStopScanning = () => {
this.props.scanStopAction({ exploreId: this.props.exploreId });
};
onToggleGraph = (showingGraph: boolean) => {
const { toggleGraph, exploreId } = this.props;
toggleGraph(exploreId, showingGraph);
};
onUpdateTimeRange = (absoluteRange: AbsoluteTimeRange) => {
const { updateTimeRange, exploreId } = this.props;
updateTimeRange({ exploreId, absoluteRange });
};
refreshExplore = () => {
const { exploreId, update } = this.props;
if (update.queries || update.ui || update.range || update.datasource || update.mode) {
this.props.refreshExplore(exploreId);
}
};
renderEmptyState = () => {
return (
<div className="explore-container">
<NoDataSourceCallToAction />
</div>
);
};
onReconnect = (event: React.MouseEvent<HTMLButtonElement>) => {
const { exploreId, reconnectDatasource } = this.props;
event.preventDefault();
reconnectDatasource(exploreId);
};
2018-04-26 04:58:42 -05:00
render() {
const {
2018-10-30 08:38:34 -05:00
StartPage,
2019-01-10 07:24:31 -06:00
datasourceInstance,
2018-04-26 04:58:42 -05:00
datasourceError,
datasourceLoading,
datasourceMissing,
2019-01-11 11:26:56 -06:00
exploreId,
showingStartPage,
2019-01-10 07:24:31 -06:00
split,
2019-02-04 06:41:29 -06:00
queryKeys,
queryErrors,
mode,
graphResult,
loading,
absoluteRange,
showingGraph,
showingTable,
timeZone,
2019-01-10 07:24:31 -06:00
} = this.props;
const exploreClass = split ? 'explore explore-split' : 'explore';
2018-04-26 04:58:42 -05:00
return (
<div className={exploreClass} ref={this.getRef}>
<ExploreToolbar exploreId={exploreId} onChangeTime={this.onChangeTime} />
{datasourceLoading ? <div className="explore-container">Loading datasource...</div> : null}
{datasourceMissing ? this.renderEmptyState() : null}
<FadeIn duration={datasourceError ? 150 : 5} in={datasourceError ? true : false}>
<div className="explore-container">
<Alert
message={`Error connecting to datasource: ${datasourceError}`}
button={{ text: 'Reconnect', onClick: this.onReconnect }}
/>
</div>
</FadeIn>
{datasourceInstance && (
<div className="explore-container">
<QueryRows exploreEvents={this.exploreEvents} exploreId={exploreId} queryKeys={queryKeys} />
<ErrorContainer queryErrors={queryErrors} />
<AutoSizer onResize={this.onResize} disableHeight>
{({ width }) => {
if (width === 0) {
return null;
}
return (
<main className="m-t-2" style={{ width }}>
<ErrorBoundary>
{showingStartPage && <StartPage onClickExample={this.onClickExample} />}
{!showingStartPage && (
<>
{mode === ExploreMode.Metrics && (
<ExploreGraphPanel
series={graphResult}
width={width}
loading={loading}
absoluteRange={absoluteRange}
isStacked={false}
showPanel={true}
showingGraph={showingGraph}
showingTable={showingTable}
timeZone={timeZone}
onToggleGraph={this.onToggleGraph}
onUpdateTimeRange={this.onUpdateTimeRange}
showBars={false}
showLines={true}
/>
)}
{mode === ExploreMode.Metrics && (
<TableContainer exploreId={exploreId} onClickCell={this.onClickLabel} />
)}
{mode === ExploreMode.Logs && (
<LogsContainer
width={width}
exploreId={exploreId}
onClickLabel={this.onClickLabel}
onStartScanning={this.onStartScanning}
onStopScanning={this.onStopScanning}
/>
)}
</>
)}
</ErrorBoundary>
</main>
);
}}
</AutoSizer>
</div>
)}
2018-04-26 04:58:42 -05:00
</div>
);
}
}
function mapStateToProps(state: StoreState, { exploreId }: ExploreProps) {
2019-01-11 11:26:56 -06:00
const explore = state.explore;
const { split } = explore;
const item: ExploreItemState = explore[exploreId];
const timeZone = getTimeZone(state.user);
2019-01-10 07:24:31 -06:00
const {
StartPage,
datasourceError,
datasourceInstance,
datasourceLoading,
datasourceMissing,
2019-01-12 16:22:28 -06:00
initialized,
2019-01-10 07:24:31 -06:00
showingStartPage,
2019-02-04 06:41:29 -06:00
queryKeys,
urlState,
update,
queryErrors,
isLive,
supportedModes,
mode,
graphResult,
loadingState,
showingGraph,
showingTable,
absoluteRange,
2019-01-11 11:26:56 -06:00
} = item;
const { datasource, queries, range: urlRange, mode: urlMode, ui } = (urlState || {}) as ExploreUrlState;
const initialDatasource = datasource || store.get(lastUsedDatasourceKeyForOrgId(state.user.orgId));
const initialQueries: DataQuery[] = ensureQueries(queries);
const initialRange = urlRange ? getTimeRangeFromUrl(urlRange, timeZone).raw : DEFAULT_RANGE;
let newMode: ExploreMode;
if (supportedModes.length) {
const urlModeIsValid = supportedModes.includes(urlMode);
const modeStateIsValid = supportedModes.includes(mode);
if (modeStateIsValid) {
newMode = mode;
} else if (urlModeIsValid) {
newMode = urlMode;
} else {
newMode = supportedModes[0];
}
} else {
newMode = [ExploreMode.Metrics, ExploreMode.Logs].includes(mode) ? mode : ExploreMode.Metrics;
}
const initialUI = ui || DEFAULT_UI_STATE;
const loading = loadingState === LoadingState.Loading || loadingState === LoadingState.Streaming;
2019-01-10 07:24:31 -06:00
return {
StartPage,
datasourceError,
datasourceInstance,
datasourceLoading,
datasourceMissing,
2019-01-12 16:22:28 -06:00
initialized,
2019-01-10 07:24:31 -06:00
showingStartPage,
2019-01-11 11:26:56 -06:00
split,
2019-02-04 06:41:29 -06:00
queryKeys,
update,
initialDatasource,
initialQueries,
initialRange,
mode: newMode,
initialUI,
queryErrors,
isLive,
graphResult,
loading,
showingGraph,
showingTable,
absoluteRange,
2019-01-10 07:24:31 -06:00
};
}
const mapDispatchToProps = {
2019-01-11 11:26:56 -06:00
changeSize,
2019-01-10 07:24:31 -06:00
initializeExplore,
modifyQueries,
reconnectDatasource,
refreshExplore,
2019-01-10 07:24:31 -06:00
scanStart,
scanStopAction,
setQueries,
updateTimeRange,
toggleGraph,
2019-01-10 07:24:31 -06:00
};
export default hot(module)(
connect(
mapStateToProps,
mapDispatchToProps
)(Explore)
2019-05-13 02:38:19 -05:00
) as React.ComponentType<{ exploreId: ExploreId }>;