insomnia/app/ui/components/codemirror/code-editor.js

785 lines
20 KiB
JavaScript
Raw Normal View History

import React, {PureComponent, PropTypes} from 'react';
import autobind from 'autobind-decorator';
2016-03-16 20:02:47 +00:00
import CodeMirror from 'codemirror';
2016-07-19 22:28:29 +00:00
import classnames from 'classnames';
import clone from 'clone';
import jq from 'jsonpath';
2016-09-15 03:46:23 +00:00
import vkBeautify from 'vkbeautify';
2016-09-13 21:18:22 +00:00
import {DOMParser} from 'xmldom';
import xpath from 'xpath';
import {showModal} from '../modals/index';
import FilterHelpModal from '../modals/filter-help-modal';
2016-11-10 21:03:12 +00:00
import * as misc from '../../../common/misc';
import {trackEvent} from '../../../analytics/index';
import {prettifyJson} from '../../../common/prettify';
import {DEBOUNCE_MILLIS} from '../../../common/constants';
import './base-imports';
import {getTagDefinitions} from '../../../templating/index';
import Dropdown from '../base/dropdown/dropdown';
import DropdownButton from '../base/dropdown/dropdown-button';
import DropdownItem from '../base/dropdown/dropdown-item';
const TAB_KEY = 9;
const TAB_SIZE = 4;
2016-03-16 20:02:47 +00:00
2016-03-20 20:42:27 +00:00
const BASE_CODEMIRROR_OPTIONS = {
lineNumbers: true,
2016-03-23 18:34:39 +00:00
placeholder: 'Start Typing...',
2016-03-20 20:42:27 +00:00
foldGutter: true,
2016-03-23 05:58:16 +00:00
height: 'auto',
autoRefresh: 500,
2016-06-20 06:31:32 +00:00
lineWrapping: true,
scrollbarStyle: 'native',
2016-06-18 22:57:23 +00:00
lint: true,
2016-07-29 20:37:23 +00:00
matchBrackets: true,
autoCloseBrackets: true,
tabSize: TAB_SIZE,
indentUnit: TAB_SIZE,
hintOptions: null,
dragDrop: true,
viewportMargin: 30, // default 10
selectionPointer: 'default',
styleActiveLine: true,
2016-07-14 22:48:56 +00:00
indentWithTabs: true,
showCursorWhenSelecting: false,
cursorScrollMargin: 12, // NOTE: This is px
2017-01-24 22:18:11 +00:00
keyMap: 'default',
2016-03-20 20:42:27 +00:00
extraKeys: {
'Ctrl-Space': 'autocomplete',
2016-09-13 02:09:35 +00:00
'Ctrl-Q': function (cm) {
2016-03-20 20:42:27 +00:00
cm.foldCode(cm.getCursor());
}
2016-03-21 05:47:49 +00:00
}
2016-03-20 20:42:27 +00:00
};
@autobind
class CodeEditor extends PureComponent {
2016-09-09 00:32:36 +00:00
constructor (props) {
super(props);
2016-09-08 22:04:25 +00:00
this.state = {
2016-09-09 00:32:36 +00:00
filter: props.filter || ''
2016-09-08 22:04:25 +00:00
};
2016-09-08 22:04:25 +00:00
this._originalCode = '';
2016-03-16 20:02:47 +00:00
}
2016-07-14 22:48:56 +00:00
componentWillUnmount () {
2016-03-16 20:02:47 +00:00
if (this.codeMirror) {
this.codeMirror.toTextArea();
}
}
componentDidUpdate () {
this._codemirrorSetOptions();
}
shouldComponentUpdate (nextProps) {
// Update if any properties changed, except value. We ignore value.
for (const key of Object.keys(nextProps)) {
if (key === 'defaultValue') {
continue;
}
if (this.props[key] !== nextProps[key]) {
return true;
}
}
return false;
}
selectAll () {
if (this.codeMirror) {
this.codeMirror.setSelection(
{line: 0, ch: 0},
{line: this.codeMirror.lineCount(), ch: 0}
);
}
}
2016-07-14 22:48:56 +00:00
focus () {
2016-03-16 20:02:47 +00:00
if (this.codeMirror) {
this.codeMirror.focus();
}
}
setCursor (ch, line = 0) {
if (this.codeMirror) {
if (!this.hasFocus()) {
this.focus();
}
this.codeMirror.setCursor({line, ch});
}
}
setSelection (chStart, chEnd, line = 0) {
if (this.codeMirror) {
this.codeMirror.setSelection(
{line, ch: chStart},
{line, ch: chEnd}
);
}
}
getSelectionStart () {
const selections = this.codeMirror.listSelections();
if (selections.length) {
return selections[0].anchor.ch;
} else {
return 0;
}
}
getSelectionEnd () {
const selections = this.codeMirror.listSelections();
if (selections.length) {
return selections[0].head.ch;
} else {
return 0;
}
}
focusEnd () {
if (this.codeMirror) {
if (!this.hasFocus()) {
this.focus();
}
const doc = this.codeMirror.getDoc();
doc.setCursor(doc.lineCount(), 0);
}
}
2017-03-01 03:09:04 +00:00
hasFocus () {
if (this.codeMirror) {
return this.codeMirror.hasFocus();
} else {
return false;
}
}
setAttribute (name, value) {
this.codeMirror.getTextArea().parentNode.setAttribute(name, value);
}
removeAttribute (name) {
this.codeMirror.getTextArea().parentNode.removeAttribute(name);
}
getAttribute (name) {
this.codeMirror.getTextArea().parentNode.getAttribute(name);
}
clearSelection () {
// Never do this if dropdown is open
if (this.codeMirror.isHintDropdownActive()) {
return;
}
if (this.codeMirror) {
this.codeMirror.setSelection(
{line: -1, ch: -1},
{line: -1, ch: -1}
);
}
}
getValue () {
if (this.codeMirror) {
return this.codeMirror.getValue();
} else {
return '';
}
}
_setFilterInputRef (n) {
this._filterInput = n;
}
_handleInitTextarea (textarea) {
2016-08-31 05:37:21 +00:00
if (!textarea) {
// Not mounted
return;
}
if (this.codeMirror) {
// Already initialized
return;
}
const {defaultValue, debounceMillis: ms} = this.props;
this.codeMirror = CodeMirror.fromTextArea(textarea, BASE_CODEMIRROR_OPTIONS);
2016-08-31 05:37:21 +00:00
// Set default listeners
const debounceMillis = typeof ms === 'number' ? ms : DEBOUNCE_MILLIS;
this.codeMirror.on('changes', misc.debounce(this._codemirrorValueChanged, debounceMillis));
this.codeMirror.on('beforeChange', this._codemirrorValueBeforeChange);
this.codeMirror.on('keydown', this._codemirrorKeyDown);
2017-07-25 18:00:30 +00:00
this.codeMirror.on('keyup', this._codemirrorTriggerCompletionKeyUp);
this.codeMirror.on('endCompletion', this._codemirrorEndCompletion);
this.codeMirror.on('focus', this._codemirrorFocus);
this.codeMirror.on('blur', this._codemirrorBlur);
this.codeMirror.on('paste', this._codemirrorPaste);
this.codeMirror.setCursor({line: -1, ch: -1});
2016-08-31 05:37:21 +00:00
if (!this.codeMirror.getOption('indentWithTabs')) {
this.codeMirror.setOption('extraKeys', {
Tab: cm => {
const spaces = (new Array(this.codeMirror.getOption('indentUnit') + 1)).join(' ');
2016-08-31 05:37:21 +00:00
cm.replaceSelection(spaces);
}
});
}
// Set editor options
this._codemirrorSetOptions();
const setup = () => {
// Actually set the value
this._codemirrorSetValue(defaultValue || '');
// Setup nunjucks listeners
if (this.props.render) {
this.codeMirror.enableNunjucksTags(this.props.render);
}
// Make URLs clickable
if (this.props.onClickLink) {
this.codeMirror.makeLinksClickable(this.props.onClickLink);
}
// HACK: Refresh because sometimes it renders too early and the scroll doesn't
// quite fit.
setTimeout(() => {
this.codeMirror.refresh();
}, 100);
};
// Do this a bit later for big values so we don't block the render process
if (defaultValue && defaultValue.length > 10000) {
setTimeout(setup, 100);
} else {
setup();
}
}
2016-09-08 22:04:25 +00:00
_isJSON (mode) {
if (!mode) {
return false;
}
return mode.indexOf('json') !== -1;
2016-09-08 22:04:25 +00:00
}
2016-09-10 01:51:49 +00:00
_isXML (mode) {
if (!mode) {
return false;
}
return mode.indexOf('xml') !== -1;
2016-09-10 01:51:49 +00:00
}
_handleBeautify () {
trackEvent('Request', 'Beautify');
2016-09-13 17:35:49 +00:00
this._prettify(this.codeMirror.getValue());
}
2016-09-13 17:35:49 +00:00
_prettify (code) {
this._codemirrorSetValue(code, true);
2016-09-13 17:29:09 +00:00
}
_prettifyJSON (code) {
2016-09-10 01:51:49 +00:00
try {
let jsonString = code;
2016-09-10 01:51:49 +00:00
if (this.props.updateFilter && this.state.filter) {
let obj = JSON.parse(code);
try {
jsonString = JSON.stringify(jq.query(obj, this.state.filter));
} catch (err) {
jsonString = '[]';
}
2016-09-10 01:51:49 +00:00
}
return prettifyJson(jsonString, '\t');
2016-09-10 01:51:49 +00:00
} catch (e) {
// That's Ok, just leave it
return code;
2016-09-10 01:51:49 +00:00
}
}
_prettifyXML (code) {
2016-09-13 21:18:22 +00:00
if (this.props.updateFilter && this.state.filter) {
try {
const dom = new DOMParser().parseFromString(code);
const nodes = xpath.select(this.state.filter, dom);
const inner = nodes.map(n => n.toString()).join('\n');
code = `<result>${inner}</result>`;
2016-09-13 21:18:22 +00:00
} catch (e) {
// Failed to parse filter (that's ok)
code = `<result></result>`;
2016-09-13 21:18:22 +00:00
}
}
2016-09-10 01:51:49 +00:00
2016-09-28 21:17:57 +00:00
try {
return vkBeautify.xml(code, '\t');
2016-09-28 21:17:57 +00:00
} catch (e) {
// Failed to parse so just return original
return code;
2016-09-28 21:17:57 +00:00
}
2016-09-10 01:51:49 +00:00
}
2016-03-20 20:42:27 +00:00
/**
2016-03-22 05:01:58 +00:00
* Sets options on the CodeMirror editor while also sanitizing them
2016-03-20 20:42:27 +00:00
*/
async _codemirrorSetOptions () {
const {
mode: rawMode,
readOnly,
hideLineNumbers,
keyMap,
lineWrapping,
getRenderContext,
getAutocompleteConstants,
hideGutters,
tabIndex,
placeholder,
noMatchBrackets,
noDragDrop,
hideScrollbars,
noStyleActiveLine,
noLint,
indentSize,
dynamicHeight,
hintOptions,
2017-07-25 18:00:30 +00:00
infoOptions,
lintOptions
} = this.props;
let mode;
if (this.props.render) {
mode = {name: 'nunjucks', baseMode: this._normalizeMode(rawMode)};
} else {
// foo bar baz
mode = this._normalizeMode(rawMode);
}
2016-04-29 01:00:12 +00:00
let options = {
readOnly: !!readOnly,
placeholder: placeholder || '',
mode: mode,
tabIndex: typeof tabIndex === 'number' ? tabIndex : null,
dragDrop: !noDragDrop,
scrollbarStyle: hideScrollbars ? 'null' : 'native',
styleActiveLine: !noStyleActiveLine,
lineNumbers: !hideGutters && !hideLineNumbers,
foldGutter: !hideGutters && !hideLineNumbers,
lineWrapping: lineWrapping,
matchBrackets: !noMatchBrackets,
lint: !noLint && !readOnly,
gutters: []
2016-04-29 01:00:12 +00:00
};
2016-04-11 00:40:14 +00:00
// Only set keyMap if we're not read-only. This is so things like
// ctrl-a work on read-only mode.
if (!readOnly && keyMap) {
options.keyMap = keyMap;
}
if (indentSize) {
options.tabSize = indentSize;
options.indentUnit = indentSize;
}
if (!hideGutters && options.lineNumbers) {
options.gutters.push('CodeMirror-linenumbers');
}
if (!hideGutters && options.foldGutter) {
options.gutters.push('CodeMirror-foldgutter');
}
if (hintOptions) {
options.hintOptions = hintOptions;
}
2017-07-25 18:00:30 +00:00
if (infoOptions) {
options.info = infoOptions;
}
if (lintOptions) {
options.lint = lintOptions;
}
if (!hideGutters && options.lint) {
// Don't really need this
// options.gutters.push('CodeMirror-lint-markers');
}
// Setup the hint options
if (getRenderContext || getAutocompleteConstants) {
let getVariables = null;
let getTags = null;
if (getRenderContext) {
getVariables = async () => {
const context = await getRenderContext();
const variables = context ? context.keys : [];
return variables || [];
};
// Only allow tags if we have variables too
getTags = async () => {
const expandedTags = [];
for (const tagDef of await getTagDefinitions()) {
if (tagDef.args[0].type !== 'enum') {
expandedTags.push(tagDef);
continue;
}
for (const option of tagDef.args[0].options) {
const optionName = misc.fnOrString(option.displayName, tagDef.args) || option.name;
const newDef = clone(tagDef);
newDef.displayName = `${tagDef.displayName}${optionName}`;
newDef.args[0].defaultValue = option.value;
expandedTags.push(newDef);
}
}
return expandedTags;
};
}
options.environmentAutocomplete = {
getVariables,
getTags,
getConstants: getAutocompleteConstants
};
}
if (dynamicHeight) {
options.viewportMargin = Infinity;
}
2016-04-11 00:40:14 +00:00
// Strip of charset if there is one
const cm = this.codeMirror;
2016-03-20 04:00:40 +00:00
Object.keys(options).map(key => {
2017-02-08 01:52:05 +00:00
// Don't set the option if it hasn't changed
if (options[key] === cm.options[key]) {
2017-02-08 01:52:05 +00:00
return;
}
cm.setOption(key, options[key]);
2016-03-20 04:00:40 +00:00
});
}
2016-03-20 04:00:40 +00:00
_normalizeMode (mode) {
const mimeType = mode ? mode.split(';')[0] : 'text/plain';
if (mimeType === 'graphql') {
// Because graphQL plugin doesn't recognize application/graphql content-type
return 'graphql';
} else if (this._isJSON(mimeType)) {
return 'application/json';
} else if (this._isXML(mimeType)) {
return 'application/xml';
} else {
return mimeType;
}
}
async _codemirrorKeyDown (doc, e) {
// Use default tab behaviour if we're told
if (this.props.defaultTabBehavior && e.keyCode === TAB_KEY) {
e.codemirrorIgnore = true;
}
if (this.props.onKeyDown && !doc.isHintDropdownActive()) {
this.props.onKeyDown(e, doc.getValue());
}
}
2017-07-25 18:00:30 +00:00
_codemirrorEndCompletion (doc, e) {
clearInterval(this._autocompleteDebounce);
}
_codemirrorTriggerCompletionKeyUp (doc, e) {
// Enable graphql completion if we're in that mode
if (doc.options.mode === 'graphql') {
// Only operate on one-letter keys. This will filter out
// any special keys (Backspace, Enter, etc)
if (e.metaKey || e.ctrlKey || e.altKey || e.key.length > 1) {
return;
}
clearTimeout(this._autocompleteDebounce);
this._autocompleteDebounce = setTimeout(() => {
doc.execCommand('autocomplete');
}, 700);
}
}
_codemirrorFocus (doc, e) {
if (this.props.onFocus) {
this.props.onFocus(e);
}
}
_codemirrorBlur (doc, e) {
if (this.props.onBlur) {
this.props.onBlur(e);
}
}
_codemirrorValueBeforeChange (doc, change) {
// If we're in single-line mode, merge all changed lines into one
if (this.props.singleLine && change.text && change.text.length > 1) {
const text = change.text
.join('') // join all changed lines into one
.replace(/\n/g, ' '); // Convert all whitespace to spaces
change.update(change.from, change.to, [text]);
}
}
_codemirrorPaste (cm, e) {
if (this.props.onPaste) {
this.props.onPaste(e);
}
}
2016-03-20 20:42:27 +00:00
/**
* Wrapper function to add extra behaviour to our onChange event
*/
_codemirrorValueChanged () {
2016-07-29 00:24:05 +00:00
// Don't trigger change event if we're ignoring changes
if (this._ignoreNextChange || !this.props.onChange) {
this._ignoreNextChange = false;
return;
}
const value = this.codeMirror.getDoc().getValue();
this.props.onChange(value);
}
2016-03-20 20:42:27 +00:00
/**
2016-03-22 05:01:58 +00:00
* Sets the CodeMirror value without triggering the onChange event
2016-03-20 20:42:27 +00:00
* @param code the code to set in the editor
* @param forcePrettify
2016-03-20 20:42:27 +00:00
*/
_codemirrorSetValue (code, forcePrettify = false) {
2016-09-08 22:04:25 +00:00
this._originalCode = code;
2016-04-17 22:46:17 +00:00
// Don't ignore changes from prettify
if (!forcePrettify) {
this._ignoreNextChange = true;
}
const shouldPrettify = forcePrettify || this.props.autoPrettify;
if (shouldPrettify && this._canPrettify()) {
if (this._isXML(this.props.mode)) {
code = this._prettifyXML(code);
} else {
code = this._prettifyJSON(code);
}
2016-04-10 02:58:48 +00:00
}
this.codeMirror.setValue(code || '');
2016-03-16 20:02:47 +00:00
}
_handleFilterHistorySelect (filter) {
this._filterInput.value = filter;
this._setFilter(filter);
}
_handleFilterChange (e) {
this._setFilter(e.target.value);
}
_setFilter (filter) {
2016-09-08 22:04:25 +00:00
clearTimeout(this._filterTimeout);
this._filterTimeout = setTimeout(() => {
this.setState({filter});
this._codemirrorSetValue(this._originalCode);
2016-09-09 00:32:36 +00:00
if (this.props.updateFilter) {
this.props.updateFilter(filter);
}
}, 200);
2016-11-23 23:29:31 +00:00
// So we don't track on every keystroke, give analytics a longer timeout
clearTimeout(this._analyticsTimeout);
const json = this._isJSON(this.props.mode);
this._analyticsTimeout = setTimeout(() => {
trackEvent(
'Response',
`Filter ${json ? 'JSONPath' : 'XPath'}`,
`${filter ? 'Change' : 'Clear'}`
);
}, 2000);
}
2016-09-08 22:04:25 +00:00
2016-09-13 17:29:09 +00:00
_canPrettify () {
const {mode} = this.props;
return this._isJSON(mode) || this._isXML(mode);
}
2016-09-08 22:33:03 +00:00
_showFilterHelp () {
const isJson = this._isJSON(this.props.mode);
showModal(FilterHelpModal, isJson);
trackEvent('Response', `Filter ${isJson ? 'JSONPath' : 'XPath'}`, 'Help');
2016-09-08 22:33:03 +00:00
}
2016-07-14 22:48:56 +00:00
render () {
const {
id,
readOnly,
fontSize,
mode,
filter,
filterHistory,
onMouseLeave,
onClick,
2017-06-01 13:32:55 +00:00
className,
dynamicHeight,
style,
type
} = this.props;
2016-07-19 22:28:29 +00:00
2017-06-01 13:32:55 +00:00
const classes = classnames(className, {
'editor': true,
'editor--dynamic-height': dynamicHeight,
'editor--readonly': readOnly
});
2016-04-29 05:58:37 +00:00
2016-09-13 17:29:09 +00:00
const toolbarChildren = [];
2016-09-10 01:51:49 +00:00
if (this.props.updateFilter && (this._isJSON(mode) || this._isXML(mode))) {
2016-09-13 17:29:09 +00:00
toolbarChildren.push(
<input
ref={this._setFilterInputRef}
2016-09-13 17:29:09 +00:00
key="filter"
type="text"
title="Filter response body"
defaultValue={filter || ''}
placeholder={this._isJSON(mode) ? '$.store.books[*].author' : '/store/books/author'}
onChange={this._handleFilterChange}
2016-09-13 17:29:09 +00:00
/>
);
2017-06-08 02:53:46 +00:00
if (filterHistory && filterHistory.length) {
toolbarChildren.push(
<Dropdown key="history" className="tall" right>
<DropdownButton className="btn btn--compact">
<i className="fa fa-clock-o"/>
</DropdownButton>
{filterHistory.reverse().map(filter => (
<DropdownItem key={filter} value={filter} onClick={this._handleFilterHistorySelect}>
{filter}
</DropdownItem>
))}
</Dropdown>
);
}
2016-09-13 17:29:09 +00:00
toolbarChildren.push(
<button key="help" className="btn btn--compact" onClick={this._showFilterHelp}>
<i className="fa fa-question-circle"/>
2016-09-13 17:29:09 +00:00
</button>
);
2016-09-08 22:04:25 +00:00
}
2016-09-13 17:29:09 +00:00
if (this.props.manualPrettify && this._canPrettify()) {
let contentTypeName = '';
if (this._isJSON(mode)) {
contentTypeName = 'JSON';
2016-09-13 17:29:09 +00:00
} else if (this._isXML(mode)) {
contentTypeName = 'XML';
2016-09-13 17:29:09 +00:00
}
toolbarChildren.push(
<button key="prettify"
className="btn btn--compact"
title="Auto-format request body whitespace"
onClick={this._handleBeautify}>
2016-09-13 17:29:09 +00:00
Beautify {contentTypeName}
</button>
);
2016-09-13 17:29:09 +00:00
}
let toolbar = null;
if (toolbarChildren.length) {
toolbar = <div className="editor__toolbar">{toolbarChildren}</div>;
}
const styles = {};
if (fontSize) {
styles.fontSize = `${fontSize}px`;
}
2016-03-16 20:02:47 +00:00
return (
<div className={classes} style={style} data-editor-type={type}>
2017-06-01 13:32:55 +00:00
<div className={classnames('editor__container', 'input', className)}
style={styles}
onClick={onClick}
onMouseLeave={onMouseLeave}>
<textarea
id={id}
ref={this._handleInitTextarea}
style={{display: 'none'}}
defaultValue=" "
readOnly={readOnly}
autoComplete="off"
/>
2016-09-20 21:17:01 +00:00
</div>
2016-09-13 17:29:09 +00:00
{toolbar}
2016-03-20 04:00:40 +00:00
</div>
2016-03-16 20:02:47 +00:00
);
}
}
CodeEditor.propTypes = {
2016-03-16 20:02:47 +00:00
onChange: PropTypes.func,
onFocus: PropTypes.func,
onBlur: PropTypes.func,
onClickLink: PropTypes.func,
onKeyDown: PropTypes.func,
onMouseLeave: PropTypes.func,
onClick: PropTypes.func,
onPaste: PropTypes.func,
2017-02-13 08:12:02 +00:00
render: PropTypes.func,
getRenderContext: PropTypes.func,
getAutocompleteConstants: PropTypes.func,
2017-01-24 22:18:11 +00:00
keyMap: PropTypes.string,
2016-04-29 01:00:12 +00:00
mode: PropTypes.string,
id: PropTypes.string,
2016-04-29 01:00:12 +00:00
placeholder: PropTypes.string,
2016-07-19 22:28:29 +00:00
lineWrapping: PropTypes.bool,
hideLineNumbers: PropTypes.bool,
hideGutters: PropTypes.bool,
noMatchBrackets: PropTypes.bool,
hideScrollbars: PropTypes.bool,
2016-07-19 22:28:29 +00:00
fontSize: PropTypes.number,
indentSize: PropTypes.number,
defaultValue: PropTypes.string,
tabIndex: PropTypes.number,
2016-09-13 17:29:09 +00:00
autoPrettify: PropTypes.bool,
manualPrettify: PropTypes.bool,
noLint: PropTypes.bool,
noDragDrop: PropTypes.bool,
noStyleActiveLine: PropTypes.bool,
className: PropTypes.any,
style: PropTypes.object,
2016-09-09 00:32:36 +00:00
updateFilter: PropTypes.func,
defaultTabBehavior: PropTypes.bool,
2017-02-13 08:12:02 +00:00
readOnly: PropTypes.bool,
type: PropTypes.string,
filter: PropTypes.string,
2017-06-08 02:53:46 +00:00
filterHistory: PropTypes.arrayOf(PropTypes.string.isRequired),
singleLine: PropTypes.bool,
debounceMillis: PropTypes.number,
dynamicHeight: PropTypes.bool,
hintOptions: PropTypes.object,
2017-07-25 18:00:30 +00:00
lintOptions: PropTypes.object,
infoOptions: PropTypes.object
2016-03-16 20:02:47 +00:00
};
export default CodeEditor;