The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/public/app/features/dashboard/dashgrid/DashboardPanel.tsx

112 lines
2.8 KiB

import React, { PureComponent } from 'react';
import { connect, ConnectedProps } from 'react-redux';
import { StoreState } from 'app/types';
import { initPanelState } from '../../panel/state/actions';
import { setPanelInstanceState } from '../../panel/state/reducers';
import { DashboardModel, PanelModel } from '../state';
import { LazyLoader } from './LazyLoader';
import { PanelChrome } from './PanelChrome';
import { PanelChromeAngular } from './PanelChromeAngular';
export interface OwnProps {
panel: PanelModel;
stateKey: string;
dashboard: DashboardModel;
isEditing: boolean;
isViewing: boolean;
width: number;
height: number;
lazy?: boolean;
}
const mapStateToProps = (state: StoreState, props: OwnProps) => {
const panelState = state.panels[props.stateKey];
if (!panelState) {
return { plugin: null };
}
return {
plugin: panelState.plugin,
instanceState: panelState.instanceState,
};
};
const mapDispatchToProps = {
initPanelState,
setPanelInstanceState,
};
const connector = connect(mapStateToProps, mapDispatchToProps);
export type Props = OwnProps & ConnectedProps<typeof connector>;
export class DashboardPanelUnconnected extends PureComponent<Props> {
static defaultProps: Partial<Props> = {
lazy: true,
};
componentDidMount() {
this.props.panel.isInView = !this.props.lazy;
if (!this.props.lazy) {
this.onPanelLoad();
}
}
onInstanceStateChange = (value: any) => {
this.props.setPanelInstanceState({ key: this.props.stateKey, value });
};
onVisibilityChange = (v: boolean) => {
this.props.panel.isInView = v;
};
onPanelLoad = () => {
if (!this.props.plugin) {
this.props.initPanelState(this.props.panel);
}
};
render() {
const { dashboard, panel, isViewing, isEditing, width, height, lazy, plugin } = this.props;
const renderPanelChrome = (isInView: boolean) =>
plugin &&
(plugin.angularPanelCtrl ? (
<PanelChromeAngular
plugin={plugin}
panel={panel}
dashboard={dashboard}
isViewing={isViewing}
isEditing={isEditing}
isInView={isInView}
width={width}
height={height}
/>
) : (
<PanelChrome
plugin={plugin}
panel={panel}
dashboard={dashboard}
isViewing={isViewing}
isEditing={isEditing}
isInView={isInView}
width={width}
height={height}
onInstanceStateChange={this.onInstanceStateChange}
/>
));
return lazy ? (
<LazyLoader width={width} height={height} onChange={this.onVisibilityChange} onLoad={this.onPanelLoad}>
{({ isInView }) => renderPanelChrome(isInView)}
</LazyLoader>
) : (
renderPanelChrome(true)
);
}
}
export const DashboardPanel = connector(DashboardPanelUnconnected);