mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
143 lines
3.7 KiB
JavaScript
143 lines
3.7 KiB
JavaScript
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 (
|
|
<Tabs className={classes}
|
|
forceRenderTabPanel
|
|
selectedIndex={defaultPreviewMode ? 1 : 0}>
|
|
<TabList>
|
|
<Tab>
|
|
<Button onClick={this._trackTab} value="Write">
|
|
Write
|
|
</Button>
|
|
</Tab>
|
|
<Tab>
|
|
<Button onClick={this._trackTab} value="Preview">
|
|
Preview
|
|
</Button>
|
|
</Tab>
|
|
</TabList>
|
|
<TabPanel className="markdown-editor__edit">
|
|
<div className="form-control form-control--outlined">
|
|
<CodeEditor
|
|
ref={this._setEditorRef}
|
|
hideGutters
|
|
hideLineNumbers
|
|
dynamicHeight={!tall}
|
|
manualPrettify
|
|
noStyleActiveLine
|
|
mode={mode || 'text/x-markdown'}
|
|
placeholder={placeholder}
|
|
debounceMillis={300}
|
|
keyMap={keyMap}
|
|
fontSize={fontSize}
|
|
lineWrapping={lineWrapping}
|
|
indentSize={indentSize}
|
|
defaultValue={markdown}
|
|
render={handleRender}
|
|
getRenderContext={handleGetRenderContext}
|
|
onChange={this._handleChange}
|
|
/>
|
|
</div>
|
|
<div className="txt-sm italic faint">
|
|
Styling with Markdown is supported
|
|
</div>
|
|
</TabPanel>
|
|
<TabPanel className="markdown-editor__preview">
|
|
<MarkdownPreview
|
|
markdown={markdown}
|
|
handleRender={handleRender}
|
|
/>
|
|
</TabPanel>
|
|
</Tabs>
|
|
);
|
|
}
|
|
}
|
|
|
|
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;
|