grafana/public/app/plugins/panel/text/TextPanel.tsx

82 lines
1.9 KiB
TypeScript
Raw Normal View History

// Libraries
2019-03-06 17:54:19 -06:00
import React, { PureComponent } from 'react';
import { debounce } from 'lodash';
import { PanelProps, renderMarkdown, textUtil } from '@grafana/data';
// Utils
2019-02-23 23:53:20 -06:00
import config from 'app/core/config';
// Types
import { TextOptions } from './types';
interface Props extends PanelProps<TextOptions> {}
interface State {
html: string;
}
2019-03-06 17:54:19 -06:00
export class TextPanel extends PureComponent<Props, State> {
constructor(props: Props) {
2019-02-23 23:53:20 -06:00
super(props);
this.state = {
2019-03-05 13:14:22 -06:00
html: this.processContent(props.options),
2019-02-23 23:53:20 -06:00
};
}
updateHTML = debounce(() => {
const html = this.processContent(this.props.options);
if (html !== this.state.html) {
this.setState({ html });
}
2019-03-06 17:54:19 -06:00
}, 150);
2019-02-23 23:53:20 -06:00
componentDidUpdate(prevProps: Props) {
// Since any change could be referenced in a template variable,
2019-03-06 17:54:19 -06:00
// This needs to process everytime (with debounce)
2019-02-23 23:53:20 -06:00
this.updateHTML();
}
prepareHTML(html: string): string {
2019-03-05 13:14:22 -06:00
const { replaceVariables } = this.props;
html = replaceVariables(html, {}, 'html');
return config.disableSanitizeHtml ? html : textUtil.sanitize(html);
2019-02-23 23:53:20 -06:00
}
prepareText(content: string): string {
return this.prepareHTML(
content
.replace(/&/g, '&amp;')
.replace(/>/g, '&gt;')
.replace(/</g, '&lt;')
.replace(/\n/g, '<br/>')
);
}
prepareMarkdown(content: string): string {
return this.prepareHTML(renderMarkdown(content));
2019-02-23 23:53:20 -06:00
}
processContent(options: TextOptions): string {
const { mode, content } = options;
if (!content) {
return '';
}
if (mode === 'markdown') {
return this.prepareMarkdown(content);
}
if (mode === 'html') {
return this.prepareHTML(content);
}
return this.prepareText(content);
}
render() {
const { html } = this.state;
return <div className="markdown-html panel-text-content" dangerouslySetInnerHTML={{ __html: html }} />;
}
}