| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257 |
- import React from 'react';
- import _ from 'lodash';
- import classNames from 'classnames';
- import config from 'app/core/config';
- import { PanelModel } from '../panel_model';
- import { PanelContainer } from './PanelContainer';
- import ScrollBar from 'app/core/components/ScrollBar/ScrollBar';
- import store from 'app/core/store';
- import { LS_PANEL_COPY_KEY } from 'app/core/constants';
- import Highlighter from 'react-highlight-words';
- export interface AddPanelPanelProps {
- panel: PanelModel;
- getPanelContainer: () => PanelContainer;
- }
- export interface AddPanelPanelState {
- filter: string;
- panelPlugins: any[];
- copiedPanelPlugins: any[];
- tab: string;
- }
- export class AddPanelPanel extends React.Component<AddPanelPanelProps, AddPanelPanelState> {
- private scrollbar: ScrollBar;
- constructor(props) {
- super(props);
- this.handleCloseAddPanel = this.handleCloseAddPanel.bind(this);
- this.renderPanelItem = this.renderPanelItem.bind(this);
- this.panelSizeChanged = this.panelSizeChanged.bind(this);
- this.state = {
- panelPlugins: this.getPanelPlugins(''),
- copiedPanelPlugins: this.getCopiedPanelPlugins(''),
- filter: '',
- tab: 'Add',
- };
- }
- componentDidMount() {
- this.props.panel.events.on('panel-size-changed', this.panelSizeChanged);
- }
- componentWillUnmount() {
- this.props.panel.events.off('panel-size-changed', this.panelSizeChanged);
- }
- panelSizeChanged() {
- setTimeout(() => {
- this.scrollbar.update();
- });
- }
- getPanelPlugins(filter) {
- let panels = _.chain(config.panels)
- .filter({ hideFromList: false })
- .map(item => item)
- .value();
- // add special row type
- panels.push({ id: 'row', name: 'Row', sort: 8, info: { logos: { small: 'public/img/icn-row.svg' } } });
- panels = this.filterPanels(panels, filter);
- // add sort by sort property
- return _.sortBy(panels, 'sort');
- }
- getCopiedPanelPlugins(filter) {
- const panels = _.chain(config.panels)
- .filter({ hideFromList: false })
- .map(item => item)
- .value();
- let copiedPanels = [];
- const copiedPanelJson = store.get(LS_PANEL_COPY_KEY);
- if (copiedPanelJson) {
- const copiedPanel = JSON.parse(copiedPanelJson);
- const pluginInfo = _.find(panels, { id: copiedPanel.type });
- if (pluginInfo) {
- const pluginCopy = _.cloneDeep(pluginInfo);
- pluginCopy.name = copiedPanel.title;
- pluginCopy.sort = -1;
- pluginCopy.defaults = copiedPanel;
- copiedPanels.push(pluginCopy);
- }
- }
- copiedPanels = this.filterPanels(copiedPanels, filter);
- return _.sortBy(copiedPanels, 'sort');
- }
- onAddPanel = panelPluginInfo => {
- const panelContainer = this.props.getPanelContainer();
- const dashboard = panelContainer.getDashboard();
- const { gridPos } = this.props.panel;
- var newPanel: any = {
- type: panelPluginInfo.id,
- title: 'Panel Title',
- gridPos: { x: gridPos.x, y: gridPos.y, w: gridPos.w, h: gridPos.h },
- };
- if (panelPluginInfo.id === 'row') {
- newPanel.title = 'Row title';
- newPanel.gridPos = { x: 0, y: 0 };
- }
- // apply panel template / defaults
- if (panelPluginInfo.defaults) {
- _.defaults(newPanel, panelPluginInfo.defaults);
- newPanel.gridPos.w = panelPluginInfo.defaults.gridPos.w;
- newPanel.gridPos.h = panelPluginInfo.defaults.gridPos.h;
- newPanel.title = panelPluginInfo.defaults.title;
- store.delete(LS_PANEL_COPY_KEY);
- }
- dashboard.addPanel(newPanel);
- dashboard.removePanel(this.props.panel);
- };
- handleCloseAddPanel(evt) {
- evt.preventDefault();
- const panelContainer = this.props.getPanelContainer();
- const dashboard = panelContainer.getDashboard();
- dashboard.removePanel(dashboard.panels[0]);
- }
- renderText(text: string) {
- const searchWords = this.state.filter.split('');
- return <Highlighter highlightClassName="highlight-search-match" textToHighlight={text} searchWords={searchWords} />;
- }
- renderPanelItem(panel, index) {
- return (
- <div key={index} className="add-panel__item" onClick={() => this.onAddPanel(panel)} title={panel.name}>
- <img className="add-panel__item-img" src={panel.info.logos.small} />
- <div className="add-panel__item-name">{this.renderText(panel.name)}</div>
- </div>
- );
- }
- noCopiedPanelPlugins() {
- return <div className="add-panel__no-panels">No copied panels yet.</div>;
- }
- filterChange(evt) {
- this.setState({
- filter: evt.target.value,
- panelPlugins: this.getPanelPlugins(evt.target.value),
- copiedPanelPlugins: this.getCopiedPanelPlugins(evt.target.value),
- });
- }
- filterKeyPress(evt) {
- if (evt.key === 'Enter') {
- const panel = _.head(this.state.panelPlugins);
- if (panel) {
- this.onAddPanel(panel);
- }
- }
- }
- filterPanels(panels, filter) {
- const regex = new RegExp(filter, 'i');
- return panels.filter(panel => {
- return regex.test(panel.name);
- });
- }
- openCopy() {
- this.setState({
- tab: 'Copy',
- filter: '',
- panelPlugins: this.getPanelPlugins(''),
- copiedPanelPlugins: this.getCopiedPanelPlugins(''),
- });
- }
- openAdd() {
- this.setState({
- tab: 'Add',
- filter: '',
- panelPlugins: this.getPanelPlugins(''),
- copiedPanelPlugins: this.getCopiedPanelPlugins(''),
- });
- }
- render() {
- const addClass = classNames({
- 'active active--panel': this.state.tab === 'Add',
- '': this.state.tab === 'Copy',
- });
- const copyClass = classNames({
- '': this.state.tab === 'Add',
- 'active active--panel': this.state.tab === 'Copy',
- });
- let panelTab;
- if (this.state.tab === 'Add') {
- panelTab = this.state.panelPlugins.map(this.renderPanelItem);
- } else if (this.state.tab === 'Copy') {
- if (this.state.copiedPanelPlugins.length > 0) {
- panelTab = this.state.copiedPanelPlugins.map(this.renderPanelItem);
- } else {
- panelTab = this.noCopiedPanelPlugins();
- }
- }
- return (
- <div className="panel-container add-panel-container">
- <div className="add-panel">
- <div className="add-panel__header">
- <i className="gicon gicon-add-panel" />
- <span className="add-panel__title">New Panel</span>
- <ul className="gf-tabs">
- <li className="gf-tabs-item">
- <div className={'gf-tabs-link pointer ' + addClass} onClick={this.openAdd.bind(this)}>
- Add
- </div>
- </li>
- <li className="gf-tabs-item">
- <div className={'gf-tabs-link pointer ' + copyClass} onClick={this.openCopy.bind(this)}>
- Paste
- </div>
- </li>
- </ul>
- <button className="add-panel__close" onClick={this.handleCloseAddPanel}>
- <i className="fa fa-close" />
- </button>
- </div>
- <ScrollBar ref={element => (this.scrollbar = element)} className="add-panel__items">
- <div className="add-panel__searchbar">
- <label className="gf-form gf-form--grow gf-form--has-input-icon">
- <input
- type="text"
- autoFocus
- className="gf-form-input gf-form--grow"
- placeholder="Panel Search Filter"
- value={this.state.filter}
- onChange={this.filterChange.bind(this)}
- onKeyPress={this.filterKeyPress.bind(this)}
- />
- <i className="gf-form-input-icon fa fa-search" />
- </label>
- </div>
- {panelTab}
- </ScrollBar>
- </div>
- </div>
- );
- }
- }
|