mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 00:25:46 -06:00
86 lines
2.3 KiB
TypeScript
86 lines
2.3 KiB
TypeScript
import React, { Component } from 'react';
|
|
import { hot } from 'react-hot-loader';
|
|
import { connect } from 'react-redux';
|
|
|
|
import { updateLocation } from 'app/core/actions';
|
|
import { StoreState } from 'app/types';
|
|
import { ExploreId, ExploreUrlState } from 'app/types/explore';
|
|
import { parseUrlState } from 'app/core/utils/explore';
|
|
|
|
import { initializeExploreSplit, resetExplore } from './state/actions';
|
|
import ErrorBoundary from './ErrorBoundary';
|
|
import Explore from './Explore';
|
|
import { CustomScrollbar } from '@grafana/ui';
|
|
|
|
interface WrapperProps {
|
|
initializeExploreSplit: typeof initializeExploreSplit;
|
|
split: boolean;
|
|
updateLocation: typeof updateLocation;
|
|
resetExplore: typeof resetExplore;
|
|
urlStates: { [key: string]: string };
|
|
}
|
|
|
|
export class Wrapper extends Component<WrapperProps> {
|
|
initialSplit: boolean;
|
|
urlStates: { [key: string]: ExploreUrlState };
|
|
|
|
constructor(props: WrapperProps) {
|
|
super(props);
|
|
this.urlStates = {};
|
|
const { left, right } = props.urlStates;
|
|
if (props.urlStates.left) {
|
|
this.urlStates.leftState = parseUrlState(left);
|
|
}
|
|
if (props.urlStates.right) {
|
|
this.urlStates.rightState = parseUrlState(right);
|
|
this.initialSplit = true;
|
|
}
|
|
}
|
|
|
|
componentDidMount() {
|
|
if (this.initialSplit) {
|
|
this.props.initializeExploreSplit();
|
|
}
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
this.props.resetExplore();
|
|
}
|
|
|
|
render() {
|
|
const { split } = this.props;
|
|
const { leftState, rightState } = this.urlStates;
|
|
|
|
return (
|
|
<div className="page-scrollbar-wrapper">
|
|
<CustomScrollbar autoHeightMin={'100%'}>
|
|
<div className="explore-wrapper">
|
|
<ErrorBoundary>
|
|
<Explore exploreId={ExploreId.left} urlState={leftState} />
|
|
</ErrorBoundary>
|
|
{split && (
|
|
<ErrorBoundary>
|
|
<Explore exploreId={ExploreId.right} urlState={rightState} />
|
|
</ErrorBoundary>
|
|
)}
|
|
</div>
|
|
</CustomScrollbar>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
const mapStateToProps = (state: StoreState) => {
|
|
const urlStates = state.location.query;
|
|
const { split } = state.explore;
|
|
return { split, urlStates };
|
|
};
|
|
|
|
const mapDispatchToProps = {
|
|
initializeExploreSplit,
|
|
updateLocation,
|
|
resetExplore,
|
|
};
|
|
|
|
export default hot(module)(connect(mapStateToProps, mapDispatchToProps)(Wrapper));
|