mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Minor refactoring of new react text panel
This commit is contained in:
@@ -1,9 +1,11 @@
|
|||||||
|
// Libraries
|
||||||
import React, { PureComponent } from 'react';
|
import React, { PureComponent } from 'react';
|
||||||
|
|
||||||
import Remarkable from 'remarkable';
|
import Remarkable from 'remarkable';
|
||||||
|
import { debounce } from 'lodash';
|
||||||
|
|
||||||
|
// Utils
|
||||||
import { sanitize } from 'app/core/utils/text';
|
import { sanitize } from 'app/core/utils/text';
|
||||||
import config from 'app/core/config';
|
import config from 'app/core/config';
|
||||||
import { debounce } from 'lodash';
|
|
||||||
|
|
||||||
// Types
|
// Types
|
||||||
import { TextOptions } from './types';
|
import { TextOptions } from './types';
|
||||||
@@ -42,13 +44,8 @@ export class TextPanel extends PureComponent<Props, State> {
|
|||||||
const { replaceVariables } = this.props;
|
const { replaceVariables } = this.props;
|
||||||
|
|
||||||
html = config.disableSanitizeHtml ? html : sanitize(html);
|
html = config.disableSanitizeHtml ? html : sanitize(html);
|
||||||
try {
|
|
||||||
return replaceVariables(html);
|
return replaceVariables(html);
|
||||||
} catch (e) {
|
|
||||||
// TODO -- put the error in the header window
|
|
||||||
console.log('Text panel error: ', e);
|
|
||||||
return html;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
prepareText(content: string): string {
|
prepareText(content: string): string {
|
||||||
|
@@ -1,6 +1,10 @@
|
|||||||
import React, { PureComponent } from 'react';
|
// Libraries
|
||||||
|
import React, { PureComponent, ChangeEvent } from 'react';
|
||||||
|
|
||||||
|
// Components
|
||||||
import { PanelEditorProps, PanelOptionsGroup, Select, SelectOptionItem } from '@grafana/ui';
|
import { PanelEditorProps, PanelOptionsGroup, Select, SelectOptionItem } from '@grafana/ui';
|
||||||
|
|
||||||
|
// Types
|
||||||
import { TextOptions } from './types';
|
import { TextOptions } from './types';
|
||||||
|
|
||||||
export class TextPanelEditor extends PureComponent<PanelEditorProps<TextOptions>> {
|
export class TextPanelEditor extends PureComponent<PanelEditorProps<TextOptions>> {
|
||||||
@@ -12,19 +16,21 @@ export class TextPanelEditor extends PureComponent<PanelEditorProps<TextOptions>
|
|||||||
|
|
||||||
onModeChange = (item: SelectOptionItem) => this.props.onOptionsChange({ ...this.props.options, mode: item.value });
|
onModeChange = (item: SelectOptionItem) => this.props.onOptionsChange({ ...this.props.options, mode: item.value });
|
||||||
|
|
||||||
onContentChange = evt => this.props.onOptionsChange({ ...this.props.options, content: (event.target as any).value });
|
onContentChange = (evt: ChangeEvent<HTMLTextAreaElement>) => {
|
||||||
|
this.props.onOptionsChange({ ...this.props.options, content: (event.target as any).value });
|
||||||
|
};
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const { mode, content } = this.props.options;
|
const { mode, content } = this.props.options;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<PanelOptionsGroup title="Text">
|
<PanelOptionsGroup title="Text">
|
||||||
<div className="gf-form">
|
<div className="gf-form-inline">
|
||||||
<span className="gf-form-label">Mode</span>
|
<div className="gf-form">
|
||||||
<Select onChange={this.onModeChange} value={this.modes.find(e => mode === e.value)} options={this.modes} />
|
<span className="gf-form-label">Mode</span>
|
||||||
|
<Select onChange={this.onModeChange} value={this.modes.find(e => mode === e.value)} options={this.modes} />
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* TODO: <code-editor */}
|
|
||||||
<textarea value={content} onChange={this.onContentChange} className="gf-form-input" rows={10} />
|
<textarea value={content} onChange={this.onContentChange} className="gf-form-input" rows={10} />
|
||||||
</PanelOptionsGroup>
|
</PanelOptionsGroup>
|
||||||
);
|
);
|
||||||
|
Reference in New Issue
Block a user