| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330 |
- import React from 'react';
- import { hot } from 'react-hot-loader';
- import colors from 'app/core/utils/colors';
- import TimeSeries from 'app/core/time_series2';
- import ElapsedTime from './ElapsedTime';
- import QueryRows from './QueryRows';
- import Graph from './Graph';
- import Table from './Table';
- import TimePicker, { DEFAULT_RANGE } from './TimePicker';
- import { DatasourceSrv } from 'app/features/plugins/datasource_srv';
- import { buildQueryOptions, ensureQueries, generateQueryKey, hasQuery } from './utils/query';
- import { decodePathComponent } from 'app/core/utils/location_util';
- function makeTimeSeriesList(dataList, options) {
- return dataList.map((seriesData, index) => {
- const datapoints = seriesData.datapoints || [];
- const alias = seriesData.target;
- const colorIndex = index % colors.length;
- const color = colors[colorIndex];
- const series = new TimeSeries({
- datapoints,
- alias,
- color,
- unit: seriesData.unit,
- });
- return series;
- });
- }
- function parseInitialState(initial) {
- try {
- const parsed = JSON.parse(decodePathComponent(initial));
- return {
- queries: parsed.queries.map(q => q.query),
- range: parsed.range,
- };
- } catch (e) {
- console.error(e);
- return { queries: [], range: DEFAULT_RANGE };
- }
- }
- interface IExploreState {
- datasource: any;
- datasourceError: any;
- datasourceLoading: any;
- graphResult: any;
- latency: number;
- loading: any;
- queries: any;
- queryError: any;
- range: any;
- requestOptions: any;
- showingGraph: boolean;
- showingTable: boolean;
- tableResult: any;
- }
- // @observer
- export class Explore extends React.Component<any, IExploreState> {
- datasourceSrv: DatasourceSrv;
- constructor(props) {
- super(props);
- const { range, queries } = parseInitialState(props.routeParams.initial);
- this.state = {
- datasource: null,
- datasourceError: null,
- datasourceLoading: true,
- graphResult: null,
- latency: 0,
- loading: false,
- queries: ensureQueries(queries),
- queryError: null,
- range: range || { ...DEFAULT_RANGE },
- requestOptions: null,
- showingGraph: true,
- showingTable: true,
- tableResult: null,
- ...props.initialState,
- };
- }
- async componentDidMount() {
- const datasource = await this.props.datasourceSrv.get();
- const testResult = await datasource.testDatasource();
- if (testResult.status === 'success') {
- this.setState({ datasource, datasourceError: null, datasourceLoading: false }, () => this.handleSubmit());
- } else {
- this.setState({ datasource: null, datasourceError: testResult.message, datasourceLoading: false });
- }
- }
- componentDidCatch(error) {
- console.error(error);
- }
- handleAddQueryRow = index => {
- const { queries } = this.state;
- const nextQueries = [
- ...queries.slice(0, index + 1),
- { query: '', key: generateQueryKey() },
- ...queries.slice(index + 1),
- ];
- this.setState({ queries: nextQueries });
- };
- handleChangeQuery = (query, index) => {
- const { queries } = this.state;
- const nextQuery = {
- ...queries[index],
- query,
- };
- const nextQueries = [...queries];
- nextQueries[index] = nextQuery;
- this.setState({ queries: nextQueries });
- };
- handleChangeTime = nextRange => {
- const range = {
- from: nextRange.from,
- to: nextRange.to,
- };
- this.setState({ range }, () => this.handleSubmit());
- };
- handleClickCloseSplit = () => {
- const { onChangeSplit } = this.props;
- if (onChangeSplit) {
- onChangeSplit(false);
- }
- };
- handleClickGraphButton = () => {
- this.setState(state => ({ showingGraph: !state.showingGraph }));
- };
- handleClickSplit = () => {
- const { onChangeSplit } = this.props;
- if (onChangeSplit) {
- onChangeSplit(true, this.state);
- }
- };
- handleClickTableButton = () => {
- this.setState(state => ({ showingTable: !state.showingTable }));
- };
- handleRemoveQueryRow = index => {
- const { queries } = this.state;
- if (queries.length <= 1) {
- return;
- }
- const nextQueries = [...queries.slice(0, index), ...queries.slice(index + 1)];
- this.setState({ queries: nextQueries }, () => this.handleSubmit());
- };
- handleSubmit = () => {
- const { showingGraph, showingTable } = this.state;
- if (showingTable) {
- this.runTableQuery();
- }
- if (showingGraph) {
- this.runGraphQuery();
- }
- };
- async runGraphQuery() {
- const { datasource, queries, range } = this.state;
- if (!hasQuery(queries)) {
- return;
- }
- this.setState({ latency: 0, loading: true, graphResult: null, queryError: null });
- const now = Date.now();
- const options = buildQueryOptions({
- format: 'time_series',
- interval: datasource.interval,
- instant: false,
- range,
- queries: queries.map(q => q.query),
- });
- try {
- const res = await datasource.query(options);
- const result = makeTimeSeriesList(res.data, options);
- const latency = Date.now() - now;
- this.setState({ latency, loading: false, graphResult: result, requestOptions: options });
- } catch (response) {
- console.error(response);
- const queryError = response.data ? response.data.error : response;
- this.setState({ loading: false, queryError });
- }
- }
- async runTableQuery() {
- const { datasource, queries, range } = this.state;
- if (!hasQuery(queries)) {
- return;
- }
- this.setState({ latency: 0, loading: true, queryError: null, tableResult: null });
- const now = Date.now();
- const options = buildQueryOptions({
- format: 'table',
- interval: datasource.interval,
- instant: true,
- range,
- queries: queries.map(q => q.query),
- });
- try {
- const res = await datasource.query(options);
- const tableModel = res.data[0];
- const latency = Date.now() - now;
- this.setState({ latency, loading: false, tableResult: tableModel, requestOptions: options });
- } catch (response) {
- console.error(response);
- const queryError = response.data ? response.data.error : response;
- this.setState({ loading: false, queryError });
- }
- }
- request = url => {
- const { datasource } = this.state;
- return datasource.metadataRequest(url);
- };
- render() {
- const { position, split } = this.props;
- const {
- datasource,
- datasourceError,
- datasourceLoading,
- graphResult,
- latency,
- loading,
- queries,
- queryError,
- range,
- requestOptions,
- showingGraph,
- showingTable,
- tableResult,
- } = this.state;
- const showingBoth = showingGraph && showingTable;
- const graphHeight = showingBoth ? '200px' : '400px';
- const graphButtonActive = showingBoth || showingGraph ? 'active' : '';
- const tableButtonActive = showingBoth || showingTable ? 'active' : '';
- const exploreClass = split ? 'explore explore-split' : 'explore';
- return (
- <div className={exploreClass}>
- <div className="navbar">
- {position === 'left' ? (
- <div>
- <a className="navbar-page-btn">
- <i className="fa fa-rocket" />
- Explore
- </a>
- </div>
- ) : (
- <div className="navbar-buttons explore-first-button">
- <button className="btn navbar-button" onClick={this.handleClickCloseSplit}>
- Close Split
- </button>
- </div>
- )}
- <div className="navbar__spacer" />
- {position === 'left' && !split ? (
- <div className="navbar-buttons">
- <button className="btn navbar-button" onClick={this.handleClickSplit}>
- Split
- </button>
- </div>
- ) : null}
- <div className="navbar-buttons">
- <button className={`btn navbar-button ${graphButtonActive}`} onClick={this.handleClickGraphButton}>
- Graph
- </button>
- <button className={`btn navbar-button ${tableButtonActive}`} onClick={this.handleClickTableButton}>
- Table
- </button>
- </div>
- <TimePicker range={range} onChangeTime={this.handleChangeTime} />
- <div className="navbar-buttons relative">
- <button className="btn navbar-button--primary" onClick={this.handleSubmit}>
- Run Query <i className="fa fa-level-down run-icon" />
- </button>
- {loading || latency ? <ElapsedTime time={latency} className="text-info" /> : null}
- </div>
- </div>
- {datasourceLoading ? <div className="explore-container">Loading datasource...</div> : null}
- {datasourceError ? (
- <div className="explore-container" title={datasourceError}>
- Error connecting to datasource.
- </div>
- ) : null}
- {datasource ? (
- <div className="explore-container">
- <QueryRows
- queries={queries}
- request={this.request}
- onAddQueryRow={this.handleAddQueryRow}
- onChangeQuery={this.handleChangeQuery}
- onExecuteQuery={this.handleSubmit}
- onRemoveQueryRow={this.handleRemoveQueryRow}
- />
- {queryError ? <div className="text-warning m-a-2">{queryError}</div> : null}
- <main className="m-t-2">
- {showingGraph ? (
- <Graph
- data={graphResult}
- id={`explore-graph-${position}`}
- options={requestOptions}
- height={graphHeight}
- split={split}
- />
- ) : null}
- {showingTable ? <Table data={tableResult} className="m-t-3" /> : null}
- </main>
- </div>
- ) : null}
- </div>
- );
- }
- }
- export default hot(module)(Explore);
|