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';
|
2019-03-22 09:24:30 -05:00
|
|
|
// @ts-ignore
|
2019-01-10 07:24:31 -06:00
|
|
|
import { connect } from 'react-redux';
|
2018-10-22 10:51:42 -05:00
|
|
|
import _ from 'lodash';
|
2019-01-11 11:26:56 -06:00
|
|
|
import { AutoSizer } from 'react-virtualized';
|
2018-07-13 02:09:36 -05:00
|
|
|
|
2019-01-17 10:59:47 -06:00
|
|
|
// Services & Utils
|
2018-08-02 09:43:33 -05:00
|
|
|
import store from 'app/core/store';
|
2019-01-17 10:59:47 -06:00
|
|
|
|
|
|
|
// Components
|
|
|
|
import { Alert } from './Error';
|
|
|
|
import ErrorBoundary from './ErrorBoundary';
|
|
|
|
import GraphContainer from './GraphContainer';
|
|
|
|
import LogsContainer from './LogsContainer';
|
|
|
|
import QueryRows from './QueryRows';
|
|
|
|
import TableContainer from './TableContainer';
|
2019-04-29 11:28:41 -05:00
|
|
|
import TimePicker from './TimePicker';
|
2019-01-10 07:24:31 -06:00
|
|
|
|
2019-01-17 10:59:47 -06:00
|
|
|
// Actions
|
2019-03-22 09:24:30 -05:00
|
|
|
import {
|
|
|
|
changeSize,
|
|
|
|
changeTime,
|
|
|
|
initializeExplore,
|
|
|
|
modifyQueries,
|
|
|
|
scanStart,
|
|
|
|
setQueries,
|
|
|
|
refreshExplore,
|
2019-04-01 00:38:00 -05:00
|
|
|
reconnectDatasource,
|
2019-03-22 09:24:30 -05:00
|
|
|
} from './state/actions';
|
2018-04-26 04:58:42 -05:00
|
|
|
|
2019-01-17 10:59:47 -06:00
|
|
|
// Types
|
2019-05-10 07:00:39 -05:00
|
|
|
import { RawTimeRange, DataQuery, ExploreStartPageProps, ExploreDataSourceApi, DataQueryError } from '@grafana/ui';
|
2019-04-29 11:28:41 -05:00
|
|
|
import {
|
|
|
|
ExploreItemState,
|
|
|
|
ExploreUrlState,
|
|
|
|
RangeScanner,
|
|
|
|
ExploreId,
|
|
|
|
ExploreUpdateState,
|
|
|
|
ExploreUIState,
|
|
|
|
} from 'app/types/explore';
|
2019-01-17 10:59:47 -06:00
|
|
|
import { StoreState } from 'app/types';
|
2019-04-29 11:28:41 -05:00
|
|
|
import {
|
|
|
|
LAST_USED_DATASOURCE_KEY,
|
|
|
|
ensureQueries,
|
|
|
|
DEFAULT_RANGE,
|
|
|
|
DEFAULT_UI_STATE,
|
|
|
|
getTimeRangeFromUrl,
|
|
|
|
} from 'app/core/utils/explore';
|
2019-01-17 10:59:47 -06:00
|
|
|
import { Emitter } from 'app/core/utils/emitter';
|
2019-01-22 07:50:19 -06:00
|
|
|
import { ExploreToolbar } from './ExploreToolbar';
|
2019-02-04 00:47:10 -06:00
|
|
|
import { scanStopAction } from './state/actionTypes';
|
2019-03-28 11:17:01 -05:00
|
|
|
import { NoDataSourceCallToAction } from './NoDataSourceCallToAction';
|
2019-04-01 00:38:00 -05:00
|
|
|
import { FadeIn } from 'app/core/components/Animations/FadeIn';
|
2019-04-29 11:28:41 -05:00
|
|
|
import { getTimeZone } from '../profile/state/selectors';
|
2019-05-10 07:00:39 -05:00
|
|
|
import { ErrorContainer } from './ErrorContainer';
|
2018-12-31 12:30:32 -06:00
|
|
|
|
2018-09-28 09:44:07 -05:00
|
|
|
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
|
|
|
changeTime: typeof changeTime;
|
|
|
|
datasourceError: string;
|
2019-02-05 02:32:42 -06:00
|
|
|
datasourceInstance: ExploreDataSourceApi;
|
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;
|
2019-03-22 09:24:30 -05:00
|
|
|
update: ExploreUpdateState;
|
2019-04-01 00:38:00 -05:00
|
|
|
reconnectDatasource: typeof reconnectDatasource;
|
2019-03-22 09:24:30 -05:00
|
|
|
refreshExplore: typeof refreshExplore;
|
2019-01-10 07:24:31 -06:00
|
|
|
scanner?: RangeScanner;
|
|
|
|
scanning?: boolean;
|
|
|
|
scanRange?: RawTimeRange;
|
|
|
|
scanStart: typeof scanStart;
|
2019-02-04 00:47:10 -06:00
|
|
|
scanStopAction: typeof scanStopAction;
|
2019-01-15 12:52:53 -06:00
|
|
|
setQueries: typeof setQueries;
|
2018-09-28 09:44:07 -05:00
|
|
|
split: boolean;
|
2019-01-10 07:24:31 -06:00
|
|
|
showingStartPage?: boolean;
|
|
|
|
supportsGraph: boolean | null;
|
|
|
|
supportsLogs: boolean | null;
|
|
|
|
supportsTable: boolean | null;
|
2019-02-04 06:41:29 -06:00
|
|
|
queryKeys: string[];
|
2019-04-29 11:28:41 -05:00
|
|
|
initialDatasource: string;
|
|
|
|
initialQueries: DataQuery[];
|
|
|
|
initialRange: RawTimeRange;
|
|
|
|
initialUI: ExploreUIState;
|
2019-05-10 07:00:39 -05:00
|
|
|
queryErrors: DataQueryError[];
|
2018-04-27 11:21:20 -05:00
|
|
|
}
|
|
|
|
|
2018-11-21 07:45:57 -06:00
|
|
|
/**
|
|
|
|
* 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.
|
2018-11-21 07:45:57 -06:00
|
|
|
*/
|
2019-01-11 11:26:56 -06:00
|
|
|
export class Explore extends React.PureComponent<ExploreProps> {
|
2018-07-17 08:13:44 -05:00
|
|
|
el: any;
|
2018-11-23 08:12:20 -06:00
|
|
|
exploreEvents: Emitter;
|
2018-11-23 10:53:16 -06:00
|
|
|
/**
|
|
|
|
* Timepicker to control scanning
|
|
|
|
*/
|
|
|
|
timepickerRef: React.RefObject<TimePicker>;
|
2018-07-17 08:13:44 -05:00
|
|
|
|
2019-03-22 09:24:30 -05:00
|
|
|
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-11-23 10:53:16 -06:00
|
|
|
this.timepickerRef = React.createRef();
|
2018-04-26 04:58:42 -05:00
|
|
|
}
|
|
|
|
|
2019-03-22 09:24:30 -05:00
|
|
|
componentDidMount() {
|
2019-04-29 11:28:41 -05:00
|
|
|
const { initialized, exploreId, initialDatasource, initialQueries, initialRange, initialUI } = this.props;
|
2019-03-22 09:24:30 -05:00
|
|
|
const width = this.el ? this.el.offsetWidth : 0;
|
2019-04-29 11:28:41 -05:00
|
|
|
|
2019-03-22 09:24:30 -05:00
|
|
|
// 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,
|
|
|
|
width,
|
2019-02-01 05:33:15 -06:00
|
|
|
this.exploreEvents,
|
2019-04-29 11:28:41 -05:00
|
|
|
initialUI
|
2019-01-11 11:26:56 -06:00
|
|
|
);
|
|
|
|
}
|
2018-04-26 04:58:42 -05:00
|
|
|
}
|
|
|
|
|
2018-11-27 07:27:33 -06:00
|
|
|
componentWillUnmount() {
|
|
|
|
this.exploreEvents.removeAllListeners();
|
2018-07-13 02:09:36 -05:00
|
|
|
}
|
|
|
|
|
2019-03-22 09:24:30 -05:00
|
|
|
componentDidUpdate(prevProps: ExploreProps) {
|
|
|
|
this.refreshExplore();
|
|
|
|
}
|
|
|
|
|
|
|
|
getRef = (el: any) => {
|
2018-07-17 08:13:44 -05:00
|
|
|
this.el = el;
|
|
|
|
};
|
|
|
|
|
2019-04-29 11:28:41 -05:00
|
|
|
onChangeTime = (range: RawTimeRange, changedByScanner?: boolean) => {
|
2019-01-10 07:24:31 -06:00
|
|
|
if (this.props.scanning && !changedByScanner) {
|
2018-11-27 09:35:37 -06:00
|
|
|
this.onStopScanning();
|
2018-11-23 10:53:16 -06:00
|
|
|
}
|
2019-01-11 11:26:56 -06:00
|
|
|
this.props.changeTime(this.props.exploreId, range);
|
2018-04-30 10:25:25 -05:00
|
|
|
};
|
|
|
|
|
2018-10-09 12:46:31 -05:00
|
|
|
// Use this in help pages to set page to a single query
|
2018-11-21 09:28:30 -06:00
|
|
|
onClickExample = (query: DataQuery) => {
|
2019-01-15 12:52:53 -06:00
|
|
|
this.props.setQueries(this.props.exploreId, [query]);
|
2018-10-09 12:46:31 -05:00
|
|
|
};
|
|
|
|
|
2018-11-28 03:46:35 -06:00
|
|
|
onClickLabel = (key: string, value: string) => {
|
|
|
|
this.onModifyQueries({ type: 'ADD_FILTER', key, value });
|
2018-08-08 09:50:30 -05:00
|
|
|
};
|
|
|
|
|
2019-03-22 09:24:30 -05:00
|
|
|
onModifyQueries = (action: any, index?: number) => {
|
2019-01-10 07:24:31 -06:00
|
|
|
const { datasourceInstance } = this.props;
|
|
|
|
if (datasourceInstance && datasourceInstance.modifyQuery) {
|
2019-01-15 12:52:53 -06:00
|
|
|
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);
|
2018-08-04 04:58:54 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
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
|
|
|
|
const scanner = this.scanPreviousRange;
|
2019-01-11 11:26:56 -06:00
|
|
|
this.props.scanStart(this.props.exploreId, scanner);
|
2018-11-23 10:53:16 -06:00
|
|
|
};
|
|
|
|
|
2019-01-10 07:24:31 -06:00
|
|
|
scanPreviousRange = (): RawTimeRange => {
|
|
|
|
// Calling move() on the timepicker will trigger this.onChangeTime()
|
|
|
|
return this.timepickerRef.current.move(-1, true);
|
2018-11-23 10:53:16 -06:00
|
|
|
};
|
|
|
|
|
2018-11-27 09:35:37 -06:00
|
|
|
onStopScanning = () => {
|
2019-02-04 00:47:10 -06:00
|
|
|
this.props.scanStopAction({ exploreId: this.props.exploreId });
|
2018-11-23 10:53:16 -06:00
|
|
|
};
|
|
|
|
|
2019-03-22 09:24:30 -05:00
|
|
|
refreshExplore = () => {
|
|
|
|
const { exploreId, update } = this.props;
|
|
|
|
|
|
|
|
if (update.queries || update.ui || update.range || update.datasource) {
|
|
|
|
this.props.refreshExplore(exploreId);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-03-28 11:17:01 -05:00
|
|
|
renderEmptyState = () => {
|
|
|
|
return (
|
|
|
|
<div className="explore-container">
|
|
|
|
<NoDataSourceCallToAction />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2019-04-01 00:38:00 -05:00
|
|
|
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,
|
2018-07-13 02:09:36 -05:00
|
|
|
datasourceMissing,
|
2019-01-11 11:26:56 -06:00
|
|
|
exploreId,
|
2018-11-16 12:21:13 -06:00
|
|
|
showingStartPage,
|
2019-01-10 07:24:31 -06:00
|
|
|
split,
|
2018-07-20 10:07:17 -05:00
|
|
|
supportsGraph,
|
|
|
|
supportsLogs,
|
|
|
|
supportsTable,
|
2019-02-04 06:41:29 -06:00
|
|
|
queryKeys,
|
2019-05-10 07:00:39 -05:00
|
|
|
queryErrors,
|
2019-01-10 07:24:31 -06:00
|
|
|
} = this.props;
|
2018-05-15 10:07:38 -05:00
|
|
|
const exploreClass = split ? 'explore explore-split' : 'explore';
|
2019-01-24 02:03:26 -06:00
|
|
|
|
2018-04-26 04:58:42 -05:00
|
|
|
return (
|
2018-07-17 08:13:44 -05:00
|
|
|
<div className={exploreClass} ref={this.getRef}>
|
2019-01-24 06:19:33 -06:00
|
|
|
<ExploreToolbar exploreId={exploreId} timepickerRef={this.timepickerRef} onChangeTime={this.onChangeTime} />
|
2018-05-01 06:27:25 -05:00
|
|
|
{datasourceLoading ? <div className="explore-container">Loading datasource...</div> : null}
|
2019-03-28 11:17:01 -05:00
|
|
|
{datasourceMissing ? this.renderEmptyState() : null}
|
2018-07-13 02:09:36 -05:00
|
|
|
|
2019-04-01 00:38:00 -05:00
|
|
|
<FadeIn duration={datasourceError ? 150 : 5} in={datasourceError ? true : false}>
|
2018-11-30 06:51:49 -06:00
|
|
|
<div className="explore-container">
|
2019-04-01 00:38:00 -05:00
|
|
|
<Alert
|
|
|
|
message={`Error connecting to datasource: ${datasourceError}`}
|
|
|
|
button={{ text: 'Reconnect', onClick: this.onReconnect }}
|
|
|
|
/>
|
2018-11-30 06:51:49 -06:00
|
|
|
</div>
|
2019-04-01 00:38:00 -05:00
|
|
|
</FadeIn>
|
2018-05-01 06:27:25 -05:00
|
|
|
|
2019-04-01 00:38:00 -05:00
|
|
|
{datasourceInstance && (
|
2019-02-19 08:41:35 -06:00
|
|
|
<div className="explore-container">
|
|
|
|
<QueryRows exploreEvents={this.exploreEvents} exploreId={exploreId} queryKeys={queryKeys} />
|
2019-05-10 07:00:39 -05:00
|
|
|
<ErrorContainer queryErrors={queryErrors} />
|
2019-02-19 08:41:35 -06:00
|
|
|
<AutoSizer onResize={this.onResize} disableHeight>
|
|
|
|
{({ width }) => {
|
|
|
|
if (width === 0) {
|
|
|
|
return null;
|
|
|
|
}
|
2019-02-07 11:20:16 -06:00
|
|
|
|
2019-02-19 08:41:35 -06:00
|
|
|
return (
|
|
|
|
<main className="m-t-2" style={{ width }}>
|
|
|
|
<ErrorBoundary>
|
|
|
|
{showingStartPage && <StartPage onClickExample={this.onClickExample} />}
|
|
|
|
{!showingStartPage && (
|
|
|
|
<>
|
|
|
|
{supportsGraph && !supportsLogs && <GraphContainer width={width} exploreId={exploreId} />}
|
|
|
|
{supportsTable && <TableContainer exploreId={exploreId} onClickCell={this.onClickLabel} />}
|
|
|
|
{supportsLogs && (
|
|
|
|
<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>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-22 09:24:30 -05:00
|
|
|
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];
|
2019-04-29 11:28:41 -05:00
|
|
|
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,
|
|
|
|
supportsGraph,
|
|
|
|
supportsLogs,
|
|
|
|
supportsTable,
|
2019-02-04 06:41:29 -06:00
|
|
|
queryKeys,
|
2019-03-22 09:24:30 -05:00
|
|
|
urlState,
|
|
|
|
update,
|
2019-05-10 07:00:39 -05:00
|
|
|
queryErrors,
|
2019-01-11 11:26:56 -06:00
|
|
|
} = item;
|
2019-04-29 11:28:41 -05:00
|
|
|
|
|
|
|
const { datasource, queries, range: urlRange, ui } = (urlState || {}) as ExploreUrlState;
|
|
|
|
const initialDatasource = datasource || store.get(LAST_USED_DATASOURCE_KEY);
|
|
|
|
const initialQueries: DataQuery[] = ensureQueries(queries);
|
|
|
|
const initialRange = urlRange ? getTimeRangeFromUrl(urlRange, timeZone).raw : DEFAULT_RANGE;
|
|
|
|
const initialUI = ui || DEFAULT_UI_STATE;
|
|
|
|
|
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-01-10 07:24:31 -06:00
|
|
|
supportsGraph,
|
|
|
|
supportsLogs,
|
|
|
|
supportsTable,
|
2019-02-04 06:41:29 -06:00
|
|
|
queryKeys,
|
2019-03-22 09:24:30 -05:00
|
|
|
update,
|
2019-04-29 11:28:41 -05:00
|
|
|
initialDatasource,
|
|
|
|
initialQueries,
|
|
|
|
initialRange,
|
|
|
|
initialUI,
|
2019-05-10 07:00:39 -05:00
|
|
|
queryErrors,
|
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
|
|
|
changeTime,
|
|
|
|
initializeExplore,
|
|
|
|
modifyQueries,
|
2019-04-01 00:38:00 -05:00
|
|
|
reconnectDatasource,
|
2019-03-22 09:24:30 -05:00
|
|
|
refreshExplore,
|
2019-01-10 07:24:31 -06:00
|
|
|
scanStart,
|
2019-02-04 00:47:10 -06:00
|
|
|
scanStopAction,
|
2019-01-15 12:52:53 -06:00
|
|
|
setQueries,
|
2019-01-10 07:24:31 -06:00
|
|
|
};
|
|
|
|
|
2019-02-19 08:41:35 -06:00
|
|
|
export default hot(module)(
|
|
|
|
connect(
|
|
|
|
mapStateToProps,
|
|
|
|
mapDispatchToProps
|
|
|
|
)(Explore)
|
2019-05-13 02:38:19 -05:00
|
|
|
) as React.ComponentType<{ exploreId: ExploreId }>;
|