| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- import React, { PureComponent } from 'react';
- import classNames from 'classnames';
- import { QueriesTab } from './QueriesTab';
- import { VizTypePicker } from './VizTypePicker';
- import { store } from 'app/store/store';
- import { updateLocation } from 'app/core/actions';
- import { PanelModel } from '../panel_model';
- import { DashboardModel } from '../dashboard_model';
- import { PanelPlugin, PluginExports } from 'app/types/plugins';
- interface PanelEditorProps {
- panel: PanelModel;
- dashboard: DashboardModel;
- panelType: string;
- pluginExports: PluginExports;
- onTypeChanged: (newType: PanelPlugin) => void;
- }
- interface PanelEditorTab {
- id: string;
- text: string;
- icon: string;
- }
- export class PanelEditor extends PureComponent<PanelEditorProps> {
- tabs: PanelEditorTab[];
- constructor(props) {
- super(props);
- this.tabs = [
- { id: 'queries', text: 'Queries', icon: 'fa fa-database' },
- { id: 'visualization', text: 'Visualization', icon: 'fa fa-line-chart' },
- ];
- }
- renderQueriesTab() {
- return <QueriesTab panel={this.props.panel} dashboard={this.props.dashboard} />;
- }
- renderPanelOptions() {
- const { pluginExports, panel } = this.props;
- if (pluginExports.PanelOptionsComponent) {
- const OptionsComponent = pluginExports.PanelOptionsComponent;
- return <OptionsComponent options={panel.getOptions()} onChange={this.onPanelOptionsChanged} />;
- } else {
- return <p>Visualization has no options</p>;
- }
- }
- onPanelOptionsChanged = (options: any) => {
- this.props.panel.updateOptions(options);
- this.forceUpdate();
- };
- renderVizTab() {
- return (
- <div className="viz-editor">
- <div className="viz-editor-col1">
- <VizTypePicker currentType={this.props.panel.type} onTypeChanged={this.props.onTypeChanged} />
- </div>
- <div className="viz-editor-col2">
- <h5 className="page-heading">Options</h5>
- {this.renderPanelOptions()}
- </div>
- </div>
- );
- }
- onChangeTab = (tab: PanelEditorTab) => {
- store.dispatch(
- updateLocation({
- query: { tab: tab.id },
- partial: true,
- })
- );
- this.forceUpdate();
- };
- render() {
- const { location } = store.getState();
- const activeTab = location.query.tab || 'queries';
- return (
- <div className="tabbed-view tabbed-view--new">
- <div className="tabbed-view-header">
- <ul className="gf-tabs">
- {this.tabs.map(tab => {
- return <TabItem tab={tab} activeTab={activeTab} onClick={this.onChangeTab} key={tab.id} />;
- })}
- </ul>
- <button className="tabbed-view-close-btn" ng-click="ctrl.exitFullscreen();">
- <i className="fa fa-remove" />
- </button>
- </div>
- <div className="tabbed-view-body">
- {activeTab === 'queries' && this.renderQueriesTab()}
- {activeTab === 'visualization' && this.renderVizTab()}
- </div>
- </div>
- );
- }
- }
- interface TabItemParams {
- tab: PanelEditorTab;
- activeTab: string;
- onClick: (tab: PanelEditorTab) => void;
- }
- function TabItem({ tab, activeTab, onClick }: TabItemParams) {
- const tabClasses = classNames({
- 'gf-tabs-link': true,
- active: activeTab === tab.id,
- });
- return (
- <li className="gf-tabs-item" key={tab.id}>
- <a className={tabClasses} onClick={() => onClick(tab)}>
- <i className={tab.icon} /> {tab.text}
- </a>
- </li>
- );
- }
|