mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
another baby step
This commit is contained in:
parent
c86fc6fb47
commit
dec62d7340
@ -139,7 +139,7 @@ export class DashboardGrid extends React.Component<DashboardGridProps, any> {
|
||||
}
|
||||
|
||||
onViewModeChanged(payload) {
|
||||
this.setState({ animated: payload.fullscreen });
|
||||
this.setState({ animated: !payload.fullscreen });
|
||||
}
|
||||
|
||||
updateGridPos(item, layout) {
|
||||
|
@ -5,6 +5,7 @@ import { store } from 'app/stores/store';
|
||||
import { observer } from 'mobx-react';
|
||||
import { QueriesTab } from './QueriesTab';
|
||||
import classNames from 'classnames';
|
||||
import { VizPicker } from './VizPicker';
|
||||
|
||||
interface PanelEditorProps {
|
||||
panel: PanelModel;
|
||||
@ -35,7 +36,16 @@ export class PanelEditor extends React.Component<PanelEditorProps, any> {
|
||||
}
|
||||
|
||||
renderVizTab() {
|
||||
return <h2>Visualizations</h2>;
|
||||
return (
|
||||
<div className="viz-editor">
|
||||
<div className="viz-editor-list">
|
||||
<VizPicker />
|
||||
</div>
|
||||
<div className="viz-editor-options">
|
||||
<h5 className="section-heading">Options</h5>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
onChangeTab = (tab: PanelEditorTab) => {
|
||||
|
46
public/app/features/dashboard/dashgrid/VizPicker.tsx
Normal file
46
public/app/features/dashboard/dashgrid/VizPicker.tsx
Normal file
@ -0,0 +1,46 @@
|
||||
import React, { PureComponent } from 'react';
|
||||
import config from 'app/core/config';
|
||||
import _ from 'lodash';
|
||||
|
||||
interface Props {}
|
||||
|
||||
interface State {
|
||||
pluginList: any[];
|
||||
}
|
||||
|
||||
export class VizPicker extends PureComponent<Props, State> {
|
||||
constructor(props) {
|
||||
super(props);
|
||||
|
||||
this.state = {
|
||||
pluginList: this.getPanelPlugins(''),
|
||||
};
|
||||
}
|
||||
|
||||
getPanelPlugins(filter) {
|
||||
let panels = _.chain(config.panels)
|
||||
.filter({ hideFromList: false })
|
||||
.map(item => item)
|
||||
.value();
|
||||
|
||||
// add sort by sort property
|
||||
return _.sortBy(panels, 'sort');
|
||||
}
|
||||
|
||||
onChangeVizPlugin = plugin => {
|
||||
console.log('set viz');
|
||||
};
|
||||
|
||||
renderVizPlugin(plugin, index) {
|
||||
return (
|
||||
<div key={index} className="viz-picker__item" onClick={() => this.onChangeVizPlugin(plugin)} title={plugin.name}>
|
||||
<img className="viz-picker__item__img" src={plugin.info.logos.small} />
|
||||
<div className="viz-pikcer__item__name">{plugin.name}</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
render() {
|
||||
return <div className="viz-picker">{this.state.pluginList.map(this.renderVizPlugin)}</div>;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user