mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
* Initial pass to move panel state to it's own, and make it by key not panel.id * Progress * Not making much progress, having panel.key be mutable is causing a lot of issues * Think this is starting to work * Began fixing tests * Add selector * Bug fixes and changes to cleanup, and fixing all flicking when switching library panels * Removed console.log * fixes after merge * fixing tests * fixing tests * Added new test for changePlugin thunk * Initial struture in place * responding to state changes in another part of the state * bha * going in a different direction * This is getting exciting * minor * More structure * More real * Added builder to reduce boiler plate * Lots of progress * Adding more visualizations * More smarts * tweaks * suggestions * Move to separate view * Refactoring to builder concept * Before hover preview test * Increase line width in preview * More suggestions * Removed old elements of onSuggestVisualizations * Don't call suggestion suppliers if there is no data * Restore card styles to only borders * Changing supplier interface to support data vs option suggestion scenario * Renamed functions * Add dynamic width support * not sure about this * Improve suggestions * Improve suggestions * Single grid/list * Store vis select pane & size * Prep for option suggestions * more suggestions * Name/title option for preview cards * Improve barchart suggestions * Support suggestions when there are no data * Minor change * reverted some changes * Improve suggestions for stacking * Removed size option * starting on unit tests, hit cyclic dependency issue * muuu * First test for getting suggestion seems to work, going to bed * add missing file * A basis for more unit tests * More tests * More unit tests * Fixed unit tests * Update * Some extreme scenarios * Added basic e2e test * Added another unit test for changePanelPlugin action * More cleanup * Minor tweak * add wait to e2e test * Renamed function and cleanup of unused function * Adding search support and adding search test to e2e test
135 lines
3.2 KiB
TypeScript
135 lines
3.2 KiB
TypeScript
import React, { PureComponent } from 'react';
|
|
import { connect, ConnectedProps } from 'react-redux';
|
|
import { PanelChrome } from './PanelChrome';
|
|
import { PanelChromeAngular } from './PanelChromeAngular';
|
|
import { DashboardModel, PanelModel } from '../state';
|
|
import { StoreState } from 'app/types';
|
|
import { PanelPlugin } from '@grafana/data';
|
|
import { cleanUpPanelState, setPanelInstanceState } from '../../panel/state/reducers';
|
|
import { initPanelState } from '../../panel/state/actions';
|
|
|
|
export interface OwnProps {
|
|
panel: PanelModel;
|
|
stateKey: string;
|
|
dashboard: DashboardModel;
|
|
isEditing: boolean;
|
|
isViewing: boolean;
|
|
isInView: boolean;
|
|
width: number;
|
|
height: number;
|
|
skipStateCleanUp?: boolean;
|
|
}
|
|
|
|
export interface State {
|
|
isLazy: 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,
|
|
cleanUpPanelState,
|
|
setPanelInstanceState,
|
|
};
|
|
|
|
const connector = connect(mapStateToProps, mapDispatchToProps);
|
|
|
|
export type Props = OwnProps & ConnectedProps<typeof connector>;
|
|
|
|
export class DashboardPanelUnconnected extends PureComponent<Props, State> {
|
|
specialPanels: { [key: string]: Function } = {};
|
|
|
|
constructor(props: Props) {
|
|
super(props);
|
|
|
|
this.state = {
|
|
isLazy: !props.isInView,
|
|
};
|
|
}
|
|
|
|
componentDidMount() {
|
|
if (!this.props.plugin) {
|
|
this.props.initPanelState(this.props.panel);
|
|
}
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
// Most of the time an unmount should result in cleanup but in PanelEdit it should not
|
|
if (!this.props.skipStateCleanUp) {
|
|
this.props.cleanUpPanelState({ key: this.props.stateKey });
|
|
}
|
|
}
|
|
|
|
componentDidUpdate() {
|
|
if (this.state.isLazy && this.props.isInView) {
|
|
this.setState({ isLazy: false });
|
|
}
|
|
}
|
|
|
|
onInstanceStateChange = (value: any) => {
|
|
this.props.setPanelInstanceState({ key: this.props.stateKey, value });
|
|
};
|
|
|
|
renderPanel(plugin: PanelPlugin) {
|
|
const { dashboard, panel, isViewing, isInView, isEditing, width, height } = this.props;
|
|
|
|
if (plugin.angularPanelCtrl) {
|
|
return (
|
|
<PanelChromeAngular
|
|
plugin={plugin}
|
|
panel={panel}
|
|
dashboard={dashboard}
|
|
isViewing={isViewing}
|
|
isEditing={isEditing}
|
|
isInView={isInView}
|
|
width={width}
|
|
height={height}
|
|
/>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<PanelChrome
|
|
plugin={plugin}
|
|
panel={panel}
|
|
dashboard={dashboard}
|
|
isViewing={isViewing}
|
|
isEditing={isEditing}
|
|
isInView={isInView}
|
|
width={width}
|
|
height={height}
|
|
onInstanceStateChange={this.onInstanceStateChange}
|
|
/>
|
|
);
|
|
}
|
|
|
|
render() {
|
|
const { plugin } = this.props;
|
|
const { isLazy } = this.state;
|
|
|
|
// If we have not loaded plugin exports yet, wait
|
|
if (!plugin) {
|
|
return null;
|
|
}
|
|
|
|
// If we are lazy state don't render anything
|
|
if (isLazy) {
|
|
return null;
|
|
}
|
|
|
|
return this.renderPanel(plugin);
|
|
}
|
|
}
|
|
|
|
export const DashboardPanel = connector(DashboardPanelUnconnected);
|