import { autoBindMethodsForReact } from 'class-autobind-decorator'; import React, { PureComponent } from 'react'; import { AUTOBIND_CFG } from '../../../common/constants'; import { CodeEditor, UnconnectedCodeEditor } from '../codemirror/code-editor'; interface Props { value: string; responseId?: string; } @autoBindMethodsForReact(AUTOBIND_CFG) export class ResponseRawViewer extends PureComponent { private _codeEditor?: UnconnectedCodeEditor; _setCodeEditorRef(n: UnconnectedCodeEditor) { this._codeEditor = n; } focus() { if (this._codeEditor) { this._codeEditor.focus(); } } selectAll() { if (this._codeEditor) { this._codeEditor.selectAll(); } } render() { const { responseId, value } = this.props; return ( ); } }