import React, {PropTypes, PureComponent} from 'react'; import autobind from 'autobind-decorator'; import classnames from 'classnames'; import {Tab, TabList, TabPanel, Tabs} from 'react-tabs'; import {trackEvent} from '../../analytics'; import Button from './base/button'; import CodeEditor from './codemirror/code-editor'; import MarkdownPreview from './markdown-preview'; @autobind class MarkdownEditor extends PureComponent { constructor (props) { super(props); this.state = { markdown: props.defaultValue }; } _trackTab (name) { trackEvent('Request', 'Markdown Editor Tab', name); } _handleChange (markdown) { this.props.onChange(markdown); this.setState({markdown}); // So we don't track on every keystroke, give analytics a longer timeout clearTimeout(this._analyticsTimeout); this._analyticsTimeout = setTimeout(() => { trackEvent('Request', 'Edit Description'); }, 2000); } _setEditorRef (n) { this._editor = n; } focusEnd () { this._editor && this._editor.focusEnd(); } focus () { this._editor && this._editor.focus(); } render () { const { fontSize, lineWrapping, indentSize, keyMap, mode, placeholder, defaultPreviewMode, className, tall, handleRender, handleGetRenderContext } = this.props; const {markdown} = this.state; const classes = classnames( 'markdown-editor', 'outlined', className, {'markdown-editor--dynamic-height': !tall} ); return (
Styling with Markdown is supported
); } } MarkdownEditor.propTypes = { // Required onChange: PropTypes.func.isRequired, defaultValue: PropTypes.string.isRequired, fontSize: PropTypes.number.isRequired, indentSize: PropTypes.number.isRequired, keyMap: PropTypes.string.isRequired, lineWrapping: PropTypes.bool.isRequired, handleRender: PropTypes.func.isRequired, handleGetRenderContext: PropTypes.func.isRequired, // Optional placeholder: PropTypes.string, defaultPreviewMode: PropTypes.bool, className: PropTypes.string, mode: PropTypes.string, tall: PropTypes.bool }; export default MarkdownEditor;