| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271 |
- // Libraries
- import React, { PureComponent } from 'react';
- // Utils & Services
- import { AngularComponent, getAngularLoader } from 'app/core/services/AngularLoader';
- import { connectWithStore } from 'app/core/utils/connectWithReduxStore';
- import { StoreState } from 'app/types';
- import { updateLocation } from 'app/core/actions';
- // Components
- import { EditorTabBody, EditorToolbarView } from './EditorTabBody';
- import { VizTypePicker } from './VizTypePicker';
- import { PluginHelp } from 'app/core/components/PluginHelp/PluginHelp';
- import { FadeIn } from 'app/core/components/Animations/FadeIn';
- // Types
- import { PanelModel } from '../state/PanelModel';
- import { DashboardModel } from '../state/DashboardModel';
- import { PanelPlugin } from 'app/types/plugins';
- interface Props {
- panel: PanelModel;
- dashboard: DashboardModel;
- plugin: PanelPlugin;
- angularPanel?: AngularComponent;
- onTypeChanged: (newType: PanelPlugin) => void;
- updateLocation: typeof updateLocation;
- urlOpenVizPicker: boolean;
- }
- interface State {
- isVizPickerOpen: boolean;
- searchQuery: string;
- scrollTop: number;
- }
- export class VisualizationTab extends PureComponent<Props, State> {
- element: HTMLElement;
- angularOptions: AngularComponent;
- searchInput: HTMLElement;
- constructor(props) {
- super(props);
- this.state = {
- isVizPickerOpen: this.props.urlOpenVizPicker,
- searchQuery: '',
- scrollTop: 0,
- };
- }
- getPanelDefaultOptions = () => {
- const { panel, plugin } = this.props;
- if (plugin.exports.PanelDefaults) {
- return panel.getOptions(plugin.exports.PanelDefaults.options);
- }
- return panel.getOptions(plugin.exports.PanelDefaults);
- };
- renderPanelOptions() {
- const { plugin, angularPanel } = this.props;
- const { PanelOptions } = plugin.exports;
- if (angularPanel) {
- return <div ref={element => (this.element = element)} />;
- }
- return (
- <>
- {PanelOptions ? (
- <PanelOptions options={this.getPanelDefaultOptions()} onChange={this.onPanelOptionsChanged} />
- ) : (
- <p>Visualization has no options</p>
- )}
- </>
- );
- }
- componentDidMount() {
- if (this.shouldLoadAngularOptions()) {
- this.loadAngularOptions();
- }
- }
- componentDidUpdate(prevProps: Props) {
- if (this.props.plugin !== prevProps.plugin) {
- this.cleanUpAngularOptions();
- }
- if (this.shouldLoadAngularOptions()) {
- this.loadAngularOptions();
- }
- }
- shouldLoadAngularOptions() {
- return this.props.angularPanel && this.element && !this.angularOptions;
- }
- loadAngularOptions() {
- const { angularPanel } = this.props;
- const scope = angularPanel.getScope();
- // When full page reloading in edit mode the angular panel has on fully compiled & instantiated yet
- if (!scope.$$childHead) {
- setTimeout(() => {
- this.forceUpdate();
- });
- return;
- }
- const panelCtrl = scope.$$childHead.ctrl;
- panelCtrl.initEditMode();
- let template = '';
- for (let i = 0; i < panelCtrl.editorTabs.length; i++) {
- template +=
- `
- <div class="panel-options-group" ng-cloak>` +
- (i > 0
- ? `<div class="panel-options-group__header">
- <span class="panel-options-group__title">{{ctrl.editorTabs[${i}].title}}
- </span>
- </div>`
- : '') +
- `<div class="panel-options-group__body">
- <panel-editor-tab editor-tab="ctrl.editorTabs[${i}]" ctrl="ctrl"></panel-editor-tab>
- </div>
- </div>
- `;
- }
- const loader = getAngularLoader();
- const scopeProps = { ctrl: panelCtrl };
- this.angularOptions = loader.load(this.element, scopeProps, template);
- }
- componentWillUnmount() {
- this.cleanUpAngularOptions();
- }
- cleanUpAngularOptions() {
- if (this.angularOptions) {
- this.angularOptions.destroy();
- this.angularOptions = null;
- }
- }
- clearQuery = () => {
- this.setState({ searchQuery: '' });
- };
- onPanelOptionsChanged = (options: any) => {
- this.props.panel.updateOptions(options);
- this.forceUpdate();
- };
- onOpenVizPicker = () => {
- this.setState({ isVizPickerOpen: true, scrollTop: 0 });
- };
- onCloseVizPicker = () => {
- if (this.props.urlOpenVizPicker) {
- this.props.updateLocation({ query: { openVizPicker: null }, partial: true });
- }
- this.setState({ isVizPickerOpen: false });
- };
- onSearchQueryChange = evt => {
- const value = evt.target.value;
- this.setState({
- searchQuery: value,
- });
- };
- renderToolbar = (): JSX.Element => {
- const { plugin } = this.props;
- const { searchQuery } = this.state;
- if (this.state.isVizPickerOpen) {
- return (
- <>
- <label className="gf-form--has-input-icon">
- <input
- type="text"
- className="gf-form-input width-13"
- placeholder=""
- onChange={this.onSearchQueryChange}
- value={searchQuery}
- ref={elem => elem && elem.focus()}
- />
- <i className="gf-form-input-icon fa fa-search" />
- </label>
- <button className="btn btn-link toolbar__close" onClick={this.onCloseVizPicker}>
- <i className="fa fa-chevron-up" />
- </button>
- </>
- );
- } else {
- return (
- <div className="toolbar__main" onClick={this.onOpenVizPicker}>
- <img className="toolbar__main-image" src={plugin.info.logos.small} />
- <div className="toolbar__main-name">{plugin.name}</div>
- <i className="fa fa-caret-down" />
- </div>
- );
- }
- };
- onTypeChanged = (plugin: PanelPlugin) => {
- if (plugin.id === this.props.plugin.id) {
- this.setState({ isVizPickerOpen: false });
- } else {
- this.props.onTypeChanged(plugin);
- }
- };
- renderHelp = () => <PluginHelp plugin={this.props.plugin} type="help" />;
- setScrollTop = (event: React.MouseEvent<HTMLElement>) => {
- const target = event.target as HTMLElement;
- this.setState({ scrollTop: target.scrollTop });
- };
- render() {
- const { plugin } = this.props;
- const { isVizPickerOpen, searchQuery, scrollTop } = this.state;
- const pluginHelp: EditorToolbarView = {
- heading: 'Help',
- icon: 'fa fa-question',
- render: this.renderHelp,
- };
- return (
- <EditorTabBody
- heading="Visualization"
- renderToolbar={this.renderToolbar}
- toolbarItems={[pluginHelp]}
- scrollTop={scrollTop}
- setScrollTop={this.setScrollTop}
- >
- <>
- <FadeIn in={isVizPickerOpen} duration={200} unmountOnExit={true} onExited={this.clearQuery}>
- <VizTypePicker
- current={plugin}
- onTypeChanged={this.onTypeChanged}
- searchQuery={searchQuery}
- onClose={this.onCloseVizPicker}
- />
- </FadeIn>
- {this.renderPanelOptions()}
- </>
- </EditorTabBody>
- );
- }
- }
- const mapStateToProps = (state: StoreState) => ({
- urlOpenVizPicker: !!state.location.query.openVizPicker,
- });
- const mapDispatchToProps = {
- updateLocation,
- };
- export default connectWithStore(VisualizationTab, mapStateToProps, mapDispatchToProps);
|